Skip to content

Commit

Permalink
fix for nonexisting uint under dos
Browse files Browse the repository at this point in the history
  • Loading branch information
svigerske committed Feb 25, 2012
1 parent 08ddc43 commit 0ab697f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Clp/test/OsiClpSolverInterfaceTest.cpp
Expand Up @@ -595,7 +595,7 @@ OsiClpSolverInterfaceUnitTest(const std::string & mpsDir, const std::string & ne
double cost[8];
double var_lb[8];
double var_ub[8];
for (uint i = 0 ; i < 8 ; i++) {
for (int i = 0 ; i < 8 ; i++) {
cost[i] = 1.0;
var_lb[i] = 0.0;
var_ub[i] = 1.0;
Expand Down

0 comments on commit 0ab697f

Please sign in to comment.