summaryrefslogtreecommitdiffstats
path: root/src/core/String.cpp
diff options
context:
space:
mode:
authorTimothy Werquin <timothy@werquin.com>2018-05-15 22:24:53 +0200
committerTimothy Werquin <timothy@werquin.com>2018-05-15 22:24:53 +0200
commit1a32997a0f877b1411bdf39c53f52b491285026c (patch)
tree8ac6d239f0d036057892caca2ae342faa37b54ee /src/core/String.cpp
parent1803ca43fa912183554857a5da45e695fe8e9645 (diff)
downloadredot-cpp-1a32997a0f877b1411bdf39c53f52b491285026c.tar.gz
Fix const for += operator in string
Diffstat (limited to 'src/core/String.cpp')
-rw-r--r--src/core/String.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/String.cpp b/src/core/String.cpp
index 7cbc090..f85fa04 100644
--- a/src/core/String.cpp
+++ b/src/core/String.cpp
@@ -134,7 +134,7 @@ void String::operator+=(const String &s) {
_godot_string = godot::api->godot_string_operator_plus(&_godot_string, &s._godot_string);
}
-void String::operator+=(const wchar_t c) const {
+void String::operator+=(const wchar_t c) {
// @Todo
}