blob: da9b0046b12c285e79e3a8b6e0ef32b6072a277d [file] [log] [blame]
#include "aos/logging/logging.h"
namespace aos {
namespace protobuf {
void FatalArenaBlockAlloc(size_t) {
LOG(FATAL, "trying to allocate in arena code");
}
void FatalArenaBlockDealloc(void*, size_t) {
LOG(FATAL, "trying to deallocate in arena code");
}
} // namespace protobuf
} // namespace aos