//--------------------------------------------------------------------------- // Greenplum Database // Copyright (c) 2024 VMware, Inc. or its affiliates //--------------------------------------------------------------------------- #ifndef GPOS_stack_H #define GPOS_stack_H #include #include "gpos/memory/MemoryPoolAllocator.h" #include "gpos/memory/deque.h" namespace gpos { template using stack = std::stack>; } #endif //GPOS_stack_H