From 777d6de361cca2ee0ba2b6d41952107e8d8c0307 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 3 Oct 2012 11:33:57 +0200 Subject: -Werror,-Wc++98-compat-pedantic Change-Id: Ifbbca6bfb12d23c8726e35e799dc92be94844c8a --- soltools/mkdepend/collectdircontent.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'soltools/mkdepend') diff --git a/soltools/mkdepend/collectdircontent.cxx b/soltools/mkdepend/collectdircontent.cxx index 2bb66ff61763..bf23df0262d3 100644 --- a/soltools/mkdepend/collectdircontent.cxx +++ b/soltools/mkdepend/collectdircontent.cxx @@ -14,7 +14,7 @@ PathFilePair IncludesCollection::split_path(const string& filePath) { return PathFilePair(dirName, filePath.substr(pos + 1, filePath.length())); } else return PathFilePair(".", filePath); -}; +} void IncludesCollection::add_to_collection(const string& dirPath) { DirContent dirContent; @@ -47,7 +47,7 @@ void IncludesCollection::add_to_collection(const string& dirPath) { closedir(pdir); #endif // defined( WNT ) allIncludes.insert(EntriesPair(dirPath, dirContent)); -}; +} bool IncludesCollection::exists(string filePath) { #if defined( WNT ) @@ -68,7 +68,7 @@ bool IncludesCollection::exists(string filePath) { } else { return true; }; -}; +} extern "C" { -- cgit