Merge pull request #3897 from Lakedaemon/namespaceWork

Namespace work
This commit is contained in:
Wouter van Oortmerssen
2016-06-13 15:16:28 -07:00
committed by GitHub
3 changed files with 712 additions and 728 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -22,8 +22,8 @@ enum Color {
Color_Red = 1,
Color_Green = 2,
Color_Blue = 8,
Color_MIN = Color_Red,
Color_MAX = Color_Blue
Color_NONE = 0,
Color_ANY = 11
};
inline const char **EnumNamesColor() {

View File

@@ -23,10 +23,6 @@ namespace NamespaceA {
struct SecondTableInA;
} // namespace NamespaceA
namespace NamespaceA {
struct TableInFirstNS FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
enum {
VT_FOO_TABLE = 4,