summaryrefslogtreecommitdiff
path: root/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp')
-rw-r--r--math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp b/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp
deleted file mode 100644
index 0659737b62d0..000000000000
--- a/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-OsiClpSolverInterface.cpp:1451:50: error: reinterpret_cast from 'nullptr_t' to 'int *' is not allowed
- messagesPointer->setDetailMessages(100,10000,reinterpret_cast<int *> (NULL));
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
---- src/coin/OsiClp/OsiClpSolverInterface.cpp.orig 2015-05-29 15:36:45 UTC
-+++ src/coin/OsiClp/OsiClpSolverInterface.cpp
-@@ -1422,7 +1422,7 @@ OsiClpSolverInterface::setupForRepeatedUse(int senseOf
- if (stopPrinting) {
- CoinMessages * messagesPointer = modelPtr_->messagesPointer();
- // won't even build messages
-- messagesPointer->setDetailMessages(100,10000,reinterpret_cast<int *> (NULL));
-+ messagesPointer->setDetailMessages(100,10000,static_cast<int *> (NULL));
- }
- #endif
- }