CaVM/include/Globals.h

18 lines
229 B
C
Raw Normal View History

2024-08-13 12:12:22 +00:00
#ifndef __JAVA_PARSER_GLOBALS_H
#define __JAVA_PARSER_GLOBALS_H
#include <vector>
#include <cstdint>
namespace Globals
{
inline std::vector<uint8_t> &buffer()
{
static std::vector<uint8_t> BUFFER;
return BUFFER;
}
}
#endif