diff options
Diffstat (limited to 'editor/imgui-raii.hpp')
-rw-r--r-- | editor/imgui-raii.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/editor/imgui-raii.hpp b/editor/imgui-raii.hpp index 7f65e63a..c2e8bae9 100644 --- a/editor/imgui-raii.hpp +++ b/editor/imgui-raii.hpp @@ -40,12 +40,6 @@ private: void text(StringView str, ImGuiTextFlags flags = ImGuiTextFlags_NoWidthForLargeClippedText); -template<size_t N> -void text(const char (&buf)[N], ImGuiTextFlags_ flags = ImGuiTextFlags_NoWidthForLargeClippedText) -{ - ImGui::TextEx(buf, buf + N - 1, flags); -} - struct style_saver final { style_saver(); |