summaryrefslogtreecommitdiffstats
path: root/src/memberdef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/memberdef.h')
-rw-r--r--src/memberdef.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/memberdef.h b/src/memberdef.h
index c68886e..4eebb0a 100644
--- a/src/memberdef.h
+++ b/src/memberdef.h
@@ -362,6 +362,9 @@ class MemberDef : public Definition
void unlock() const;
void saveToDisk() const;
void makeResident() const;
+ void _computeLinkableInProject();
+ void _computeIsConstructor();
+ void _computeIsDestructor();
static int s_indentLevel;
// disable copying of member defs
@@ -376,6 +379,9 @@ class MemberDef : public Definition
int m_cacheHandle;
off_t m_storagePos; // location where the item is stored in file (if impl==0)
bool m_flushPending;
+ uchar m_isLinkableCached; // 0 = not cached, 1=FALSE, 2=TRUE
+ uchar m_isConstructorCached; // 0 = not cached, 1=FALSE, 2=TRUE
+ uchar m_isDestructorCached; // 0 = not cached, 1=FALSE, 2=TRUE
};
#endif