summaryrefslogtreecommitdiff
path: root/Source/cmDependsC.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 11:02:08 -0500
committerKen Martin <ken.martin@kitware.com>2006-03-15 11:02:08 -0500
commit3d96e522617647665d7e99919ba71d34b1db870c (patch)
tree2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmDependsC.h
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadcmake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r--Source/cmDependsC.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h
index 6c80db3a49..3fb3906093 100644
--- a/Source/cmDependsC.h
+++ b/Source/cmDependsC.h
@@ -60,18 +60,18 @@ protected:
std::set<cmStdString>& dependencies);
// The include file search path.
- std::vector<std::string> const* m_IncludePath;
+ std::vector<std::string> const* IncludePath;
// Regular expression to identify C preprocessor include directives.
- cmsys::RegularExpression m_IncludeRegexLine;
+ cmsys::RegularExpression IncludeRegexLine;
// Regular expressions to choose which include files to scan
// recursively and which to complain about not finding.
- cmsys::RegularExpression m_IncludeRegexScan;
- cmsys::RegularExpression m_IncludeRegexComplain;
+ cmsys::RegularExpression IncludeRegexScan;
+ cmsys::RegularExpression IncludeRegexComplain;
// Set of generated files available.
- std::set<cmStdString> const* m_GeneratedFiles;
+ std::set<cmStdString> const* GeneratedFiles;
public:
// Data structures for dependency graph walk.
struct UnscannedEntry
@@ -82,18 +82,18 @@ public:
struct cmIncludeLines
{
- cmIncludeLines(): m_Used(false) {}
- std::vector<UnscannedEntry> m_UnscannedEntries;
- bool m_Used;
+ cmIncludeLines(): Used(false) {}
+ std::vector<UnscannedEntry> UnscannedEntries;
+ bool Used;
};
protected:
- std::set<cmStdString> m_Encountered;
- std::queue<UnscannedEntry> m_Unscanned;
- t_CharBuffer m_Buffer;
+ std::set<cmStdString> Encountered;
+ std::queue<UnscannedEntry> Unscanned;
+ t_CharBuffer Buffer;
- std::map<cmStdString, cmIncludeLines *> m_fileCache;
+ std::map<cmStdString, cmIncludeLines *> fileCache;
- cmStdString m_cacheFileName;
+ cmStdString cacheFileName;
void WriteCacheFile() const;
void ReadCacheFile();