src: fixed clang warnings

This commit is contained in:
Eberhard Graether
2015-12-13 04:48:04 +01:00
parent 87ad243f31
commit 801c2555bc
6 changed files with 3 additions and 11 deletions
-4
View File
@@ -21,8 +21,6 @@ std::string ParserClient::addAccessPrefix(const std::string& str, AccessType acc
return "private " + str;
case ACCESS_NONE:
return str;
default:
return str;
}
}
@@ -36,8 +34,6 @@ std::string ParserClient::addAbstractionPrefix(const std::string& str, Abstracti
return "pure virtual " + str;
case ABSTRACTION_NONE:
return str;
default:
return str;
}
}