We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f8f39 commit 99586e7Copy full SHA for 99586e7
ortools/linear_solver/linear_solver.cc
@@ -412,8 +412,8 @@ MPSolver::MPSolver(const std::string& name,
412
413
MPSolver::~MPSolver() { Clear(); }
414
415
-bool GurobiIsCorrectlyInstalled() __attribute__((weak)) { return false; }
416
-bool XpressIsCorrectlyInstalled() __attribute__((weak)) { return false; }
+bool __attribute__((weak)) GurobiIsCorrectlyInstalled() { return false; }
+bool __attribute__((weak)) XpressIsCorrectlyInstalled() { return false; }
417
418
// static
419
bool MPSolver::SupportsProblemType(OptimizationProblemType problem_type) {
0 commit comments