From 684eccc1463b95c3e0b12afba9f096ad41064749 Mon Sep 17 00:00:00 2001 From: Michael Moss Date: Thu, 11 Jun 2026 06:52:31 -0700 Subject: [PATCH] Removed unused constexpr variables in ImPlot Python bindings PiperOrigin-RevId: 930500399 Change-Id: I95bc9c4b580700d75a48d0784d611913956c0431 --- python/mujoco/experimental/implot/implot.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/mujoco/experimental/implot/implot.cc b/python/mujoco/experimental/implot/implot.cc index a174ea8c..7f287f32 100644 --- a/python/mujoco/experimental/implot/implot.cc +++ b/python/mujoco/experimental/implot/implot.cc @@ -27,10 +27,7 @@ using ImString = const char*; static constexpr const ImVec2 ImVec2_Zero = ImVec2(0.0f, 0.0f); static constexpr const ImVec2 ImVec2_One = ImVec2(1.0f, 1.0f); static constexpr const ImVec2 ImVec2_NegOne_Zero = ImVec2(-1.0f, 0.0f); -static constexpr const ImVec4 ImVec4_Zero = ImVec4(0.0f, 0.0f, 0.0f, 0.0f); static constexpr const ImVec4 ImVec4_One = ImVec4(1.0f, 1.0f, 1.0f, 1.0f); -static constexpr const ImPlotRect ImPlotRect_Default{}; -static constexpr const ImPlotRange ImPlotRange_Default{}; PYBIND11_MODULE(implot, m) { // Import dear_imgui to make types like ImVec2 available.