From: FujiZ Date: Mon, 18 Nov 2019 20:02:14 +0000 (+0800) Subject: add namespace prefix in FLATBUFFERS_MAX_BUFFER_SIZE (#5629) X-Git-Tag: v1.12.0~90 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff3781dc2d541c68122ec33c96ddf7032fcca27e;p=platform%2Fupstream%2Fflatbuffers.git add namespace prefix in FLATBUFFERS_MAX_BUFFER_SIZE (#5629) --- diff --git a/include/flatbuffers/base.h b/include/flatbuffers/base.h index 92c47a3..86ecf23 100644 --- a/include/flatbuffers/base.h +++ b/include/flatbuffers/base.h @@ -296,7 +296,7 @@ typedef uint16_t voffset_t; typedef uintmax_t largest_scalar_t; // In 32bits, this evaluates to 2GB - 1 -#define FLATBUFFERS_MAX_BUFFER_SIZE ((1ULL << (sizeof(soffset_t) * 8 - 1)) - 1) +#define FLATBUFFERS_MAX_BUFFER_SIZE ((1ULL << (sizeof(::flatbuffers::soffset_t) * 8 - 1)) - 1) // We support aligning the contents of buffers up to this size. #define FLATBUFFERS_MAX_ALIGNMENT 16