Explorar el Código

fixed bullshit min/max undef in medit. Hot dog slices work on cap

Former-commit-id: 847def67f518a3f1588f0d62feb80fb5965b3a03
Alec Jacobson (jalec hace 12 años
padre
commit
f361d3afe1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      include/igl/C_STR.h

+ 1 - 1
include/igl/C_STR.h

@@ -5,7 +5,7 @@
 //   void func(const char * c);
 // Then you can write:
 //   func(C_STR("foo"<<1<<"bar"));
-#include <string>
 #include <sstream>
+#include <string>
 #define C_STR(X) static_cast<std::ostringstream&>(std::ostringstream().seekp(0) << X).str().c_str()
 #endif