diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-09 14:30:11 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-09 14:30:11 -0500 |
commit | d13643aa92130a7234c90ea6f04aa98a61cf98d7 (patch) | |
tree | 2f243f6b25d309f8e5291fb91285d5bd200807e2 /Source/cmDependsC.h | |
parent | 92b6c8e742df5112afd8b9cf4d0c752fe02a0619 (diff) | |
download | cmake-d13643aa92130a7234c90ea6f04aa98a61cf98d7.tar.gz |
ENH: clean up style a bit
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index e9d335f4ac..f358fa3be5 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -77,9 +77,9 @@ protected: struct cmIncludeLines { - cmIncludeLines():used(false) {} - std::list<UnscannedEntry> list; - bool used; + cmIncludeLines(): m_Used(false) {} + std::list<UnscannedEntry> m_UnscannedEntries; + bool m_Used; }; std::set<cmStdString> m_Encountered; |