Skip to content

Commit 5eac273

Browse files
committed
Merge remote-tracking branch 'upstream/master' into dev-ws19-master
2 parents 3193d40 + 4a929ba commit 5eac273

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/CoinRational.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
#include <cstdio>
1313
#endif
1414
#include <cassert>
15-
#ifdef COINUTILS_HAS_STDINT_H
16-
#include <stdint.h>
17-
#endif
1815

1916
#include "CoinRational.hpp"
2017

src/CoinRational.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99

1010
#include "CoinUtilsConfig.h"
1111

12+
#if defined(COINUTILS_HAS_CSTDINT)
13+
#include <cstdint>
14+
#elif defined(COINUTILS_HAS_STDINT_H)
15+
#include <stdint.h>
16+
#endif
17+
1218
//Small class for rational numbers
1319
class COINUTILSLIB_EXPORT CoinRational
1420
{

0 commit comments

Comments
 (0)