summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-10-03 11:33:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-10-03 18:22:21 +0200
commit777d6de361cca2ee0ba2b6d41952107e8d8c0307 (patch)
tree8a781ad40b6e178fe4b7098b796fc2ad28aaaa7e /soltools
parent93f69ad71043aa1d1d20466a2e359478b2e7b8d8 (diff)
-Werror,-Wc++98-compat-pedantic
Change-Id: Ifbbca6bfb12d23c8726e35e799dc92be94844c8a
Diffstat (limited to 'soltools')
-rw-r--r--soltools/mkdepend/collectdircontent.cxx6
1 files changed, 3 insertions, 3 deletions
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" {