diff options
Diffstat (limited to 'src/shared/cplusplus/Symbol.h')
-rw-r--r-- | src/shared/cplusplus/Symbol.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Symbol.h b/src/shared/cplusplus/Symbol.h index ea49529e74..d7c70c38ae 100644 --- a/src/shared/cplusplus/Symbol.h +++ b/src/shared/cplusplus/Symbol.h @@ -233,6 +233,8 @@ public: Name *identity() const; + bool isGenerated() const; + void setScope(Scope *scope); // ### make me private void setSourceLocation(unsigned sourceLocation); // ### make me private @@ -256,6 +258,8 @@ private: unsigned _index; Symbol *_next; + bool _isGenerated: 1; + class IdentityForName; class HashCode; |