Fix various clang-tidy warnings

This commit is contained in:
Dennis Klein
2019-07-22 10:38:38 +02:00
committed by Dennis Klein
parent a65f0e6777
commit 499ffcd300
9 changed files with 23 additions and 12 deletions

View File

@@ -53,8 +53,8 @@ enum class Transition : int
ErrorFound
};
std::string GetStateName(const State);
std::string GetTransitionName(const Transition);
std::string GetStateName(State);
std::string GetTransitionName(Transition);
State GetState(const std::string& state);
Transition GetTransition(const std::string& transition);