We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c5216 commit 697421dCopy full SHA for 697421d
src/Obj.cpp
@@ -26,14 +26,14 @@ Copyright (C) 2009 Jon Macey
26
27
#if defined(WIN32)
28
29
-// namespace std
30
-// {
31
-// template < typename T >
32
-// bool signbit(T t)
33
34
-// return signbit(double(t));
35
-// }
36
-// } // namespace std
+namespace std
+{
+// signbit is not defined for int in windows
+bool signbit(int t)
+ return signbit(double(t));
+}
+} // namespace std
37
38
#endif
39
0 commit comments