summaryrefslogtreecommitdiffhomepage
path: root/editor/inspect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/inspect.cpp')
-rw-r--r--editor/inspect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/inspect.cpp b/editor/inspect.cpp
index 29e7d193..d52ee5e2 100644
--- a/editor/inspect.cpp
+++ b/editor/inspect.cpp
@@ -54,7 +54,7 @@ int corrade_string_resize_callback(ImGuiInputTextCallbackData* data)
if ((size_t)data->BufSize > str.size()+1)
{
auto str2 = String{ValueInit, (size_t)data->BufSize};
- str = std::move(str2);
+ str = move(str2);
data->Buf = str.data();
}
}