OpenTTD Source
20241108-master-g80f628063a
|
Base class for SmallStack. More...
#include <smallstack_type.hpp>
Public Member Functions | |
SmallStackItem (const Titem &value, Tindex next) | |
Create a new item. More... | |
Data Fields | |
Tindex | next |
Pool index of next item. | |
Titem | value |
Value of current item. | |
Base class for SmallStack.
We cannot add this into SmallStack itself as certain compilers don't like it.
Definition at line 94 of file smallstack_type.hpp.
|
inline |
Create a new item.
value | Value of the item. |
next | Next item in the stack. |
Definition at line 103 of file smallstack_type.hpp.