2
0
Эх сурвалжийг харах

Remove spurious assert

Remove nop assert that causes warnings on Clang.
Josh Simmons 10 жил өмнө
parent
commit
6425b8c1cf
1 өөрчлөгдсөн 0 нэмэгдсэн , 1 устгасан
  1. 0 1
      imgui.cpp

+ 0 - 1
imgui.cpp

@@ -828,7 +828,6 @@ void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float&
 static bool ImLoadFileToMemory(const char* filename, const char* file_open_mode, void** out_file_data, size_t* out_file_size, size_t padding_bytes)
 {
     IM_ASSERT(filename && file_open_mode && out_file_data && out_file_size);
-    IM_ASSERT(padding_bytes >= 0);
     *out_file_data = NULL;
     *out_file_size = 0;