aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/cplusplus/Symbol.h
diff options
context:
space:
mode:
authorRoberto Raggi <[email protected]>2009-03-04 15:45:38 +0100
committerRoberto Raggi <[email protected]>2009-03-04 15:45:38 +0100
commit942f5a708adae178d445c68cf63956ef12f3df56 (patch)
treed6286edab2120b18189e25af1f77fc1efa352143 /src/shared/cplusplus/Symbol.h
parent4613da1c8bb58fe7aea71590b2e1ddb88fdb6f2b (diff)
Ignore the symbol's column for generated symbols (at least for now).
Diffstat (limited to 'src/shared/cplusplus/Symbol.h')
-rw-r--r--src/shared/cplusplus/Symbol.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Symbol.h b/src/shared/cplusplus/Symbol.h
index ea49529e74d..d7c70c38ae7 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;