summary refs log tree commit diff stats
path: root/tools/util/naming.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/util/naming.cpp')
-rw-r--r--tools/util/naming.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/util/naming.cpp b/tools/util/naming.cpp index 12594c5..0ae99f6 100644 --- a/tools/util/naming.cpp +++ b/tools/util/naming.cpp
@@ -2,10 +2,10 @@
2 2
3#include <sstream> 3#include <sstream>
4 4
5std::string GetLetterName(std::string key, bool double_) { 5std::string GetLetterName(std::string key, bool level2) {
6 std::ostringstream lettername_s; 6 std::ostringstream lettername_s;
7 lettername_s << key; 7 lettername_s << key;
8 lettername_s << (double_ ? "2" : "1"); 8 lettername_s << (level2 ? "2" : "1");
9 9
10 return lettername_s.str(); 10 return lettername_s.str();
11} 11}