diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-01 12:14:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-02 09:38:29 +0200 |
commit | aa1b911b64641bbf29991af7c6f7798739aba667 (patch) | |
tree | 49f367d26ca57cc7a84dcdcca90613d6b46fed1f /soltools | |
parent | f70d8277941ada544736abdb72548fb16e0d992d (diff) |
loplugin:staticmethods
Change-Id: I1f6c6d13697aa397067478d6b07429120106e6bd
Diffstat (limited to 'soltools')
-rw-r--r-- | soltools/mkdepend/collectdircontent.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/soltools/mkdepend/collectdircontent.hxx b/soltools/mkdepend/collectdircontent.hxx index 4d3c6dd79700..5eab3974771d 100644 --- a/soltools/mkdepend/collectdircontent.hxx +++ b/soltools/mkdepend/collectdircontent.hxx @@ -24,12 +24,12 @@ typedef std::pair<std::string, std::string> PathFilePair; struct IncludesCollection { - private: +private: DirMap allIncludes; - PathFilePair split_path(const std::string& filePath); + static PathFilePair split_path(const std::string& filePath); void add_to_collection(const std::string& dirPath); - public: +public: bool exists(std::string filePath); }; |