Parker Schuh | 149161a | 2016-03-16 21:57:21 -0700 | [diff] [blame] | 1 | #include "aos/common/logging/logging.h" |
2 | |||||
3 | namespace aos { | ||||
4 | namespace protobuf { | ||||
5 | |||||
6 | void FatalArenaBlockAlloc(size_t) { | ||||
7 | LOG(FATAL, "trying to allocate in arena code"); | ||||
8 | } | ||||
9 | |||||
10 | void FatalArenaBlockDealloc(void*, size_t) { | ||||
11 | LOG(FATAL, "trying to deallocate in arena code"); | ||||
12 | } | ||||
13 | |||||
14 | } // namespace protobuf | ||||
15 | } // namespace aos |