pocketpy/include/pocketpy/objects/stackmemory.hpp
ykiko 1c82060daf
Format the world. (#259)
* add some clang-format offs.

* add formats.

* format the world.

* AllowShortIfStatementsOnASingleLine

* off REGION.

* Rollback vm.hpp

* Disable insert.
2024-06-04 22:55:17 +08:00

19 lines
287 B
C++

#pragma once
#include "pocketpy/common/traits.hpp"
namespace pkpy {
struct StackMemory {
int count;
StackMemory(int count) : count(count) {}
};
template <>
constexpr inline bool is_sso_v<StackMemory> = true;
const inline int kTpStackMemoryIndex = 27;
} // namespace pkpy