This commit is contained in:
Michael Davidsaver
2019-12-19 19:59:37 -08:00
parent cf91bc3033
commit b7feb98aaa
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -20,6 +20,10 @@ USR_CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
#USR_CXXFLAGS_Linux += -gz=zlib
#USR_LDFLAGS_Linux += -Wl,--compress-debug-sections=zlib
# LTO takes a nice chunk out of the .so text size, but blows up the .a
#USR_CXXFLAGS += -flto
#USR_LDFLAGS += -flto
# fault on any undefined symbols (eg. from missing LIB_SYS_LIBS)
USR_LDFLAGS_Linux += -Wl,--no-undefined -Wl,--no-allow-shlib-undefined
-1
View File
@@ -141,7 +141,6 @@ struct StructTop {
// empty, or the field of a structure which encloses this.
Value enclosing;
};
static_assert (std::is_standard_layout<StructTop>{}, "Needed for offsetof()");
using Type = std::shared_ptr<const FieldDesc>;
+2 -1
View File
@@ -356,6 +356,7 @@ public:
//! copy values from other. Must have matching types.
// Value& assign(const Value&);
//! Use to allocate members for an array of Struct and array of Union
Value allocMember();
//! Does this Value actual reference some underlying storage
@@ -381,7 +382,7 @@ public:
//! test for instance equality.
inline bool compareInst(const Value& o) { return store==o.store; }
// int compareValue(const Value&);
// int compareType(const Value&);
inline int compareType(const Value& o) { return desc==o.desc; }
// access to Value's ... value
// not for Struct