CaVM/include/Globals.h
2024-08-13 08:37:36 -04:00

18 lines
229 B
C++

#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