From 1a32997a0f877b1411bdf39c53f52b491285026c Mon Sep 17 00:00:00 2001 From: Timothy Werquin Date: Tue, 15 May 2018 22:24:53 +0200 Subject: Fix const for += operator in string --- src/core/String.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/String.cpp') 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 } -- cgit v1.2.3