mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
11 lines
472 B
C++
11 lines
472 B
C++
--- Cbc/src/CbcModel.cpp.orig 2018-04-16 07:45:54 UTC
|
|
+++ Cbc/src/CbcModel.cpp
|
|
@@ -5338,7 +5338,7 @@ void CbcModel::branchAndBound(int doStat
|
|
OsiClpSolverInterface * clpSolver
|
|
= dynamic_cast<OsiClpSolverInterface *> (solver_);
|
|
if (clpSolver)
|
|
- clpSolver->setFakeObjective(reinterpret_cast<double *> (NULL));
|
|
+ clpSolver->setFakeObjective((double*)nullptr);
|
|
}
|
|
#endif
|
|
moreSpecialOptions_ = saveMoreSpecialOptions;
|