diff options
Diffstat (limited to 'raul')
-rw-r--r-- | raul/Path.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/raul/Path.h b/raul/Path.h index e79e111..c19767d 100644 --- a/raul/Path.h +++ b/raul/Path.h @@ -169,6 +169,7 @@ public: if (str[i] == ' ' || str[i] == '_') { str[i+1] = std::toupper(str[i+1]); // capitalize next char str = str.substr(0, i) + str.substr(i+1); // chop space/underscore + --i; } else if (str[i] == '[' || str[i] == '{') { str[i] = '('; } else if (str[i] == ']' || str[i] == '}') { |