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.
2 parents 3193d40 + 4a929ba commit 5eac273Copy full SHA for 5eac273
src/CoinRational.cpp
@@ -12,9 +12,6 @@
12
#include <cstdio>
13
#endif
14
#include <cassert>
15
-#ifdef COINUTILS_HAS_STDINT_H
16
-#include <stdint.h>
17
-#endif
18
19
#include "CoinRational.hpp"
20
src/CoinRational.hpp
@@ -9,6 +9,12 @@
9
10
#include "CoinUtilsConfig.h"
11
+#if defined(COINUTILS_HAS_CSTDINT)
+#include <cstdint>
+#elif defined(COINUTILS_HAS_STDINT_H)
+#include <stdint.h>
+#endif
+
//Small class for rational numbers
class COINUTILSLIB_EXPORT CoinRational
{
0 commit comments