src: fixed clang warnings

This commit is contained in:
Eberhard Graether
2016-08-06 12:53:17 +02:00
parent f7de8d017a
commit 3c88998c10
7 changed files with 12 additions and 4 deletions
+2
View File
@@ -18,6 +18,8 @@ std::string ParserClient::addAccessPrefix(const std::string& str, AccessKind acc
return "private " + str;
case ACCESS_DEFAULT:
return "default " + str;
default:
break;
}
return str;
}