summaryrefslogtreecommitdiffhomepage
path: root/editor/imgui-raii.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/imgui-raii.hpp')
-rw-r--r--editor/imgui-raii.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui-raii.hpp b/editor/imgui-raii.hpp
index 8df8de38..9888b70b 100644
--- a/editor/imgui-raii.hpp
+++ b/editor/imgui-raii.hpp
@@ -40,7 +40,7 @@ private:
void text(StringView str, ImGuiTextFlags flags = ImGuiTextFlags_NoWidthForLargeClippedText);
-template<std::size_t N>
+template<size_t N>
void text(const char (&buf)[N], ImGuiTextFlags_ flags = ImGuiTextFlags_NoWidthForLargeClippedText)
{
ImGui::TextEx(buf, buf + N - 1, flags);