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