From 4a04bac250c66f946161063bb3932087bc084822 Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen Date: Wed, 13 Apr 2016 12:02:22 -0700 Subject: [PATCH] Fixed struct -> class pre-declaration error. Change-Id: I3730a6823d603982c4250d514e827e3f93d1f81e Tested: on Linux. --- include/flatbuffers/idl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/flatbuffers/idl.h b/include/flatbuffers/idl.h index e671c01e7..dc385efa3 100644 --- a/include/flatbuffers/idl.h +++ b/include/flatbuffers/idl.h @@ -112,7 +112,7 @@ inline size_t SizeOf(BaseType t) { struct StructDef; struct EnumDef; -struct Parser; +class Parser; // Represents any type in the IDL, which is a combination of the BaseType // and additional information for vectors/structs_.