gravatar
ladanyi@tmit.bme.hu
ladanyi@tmit.bme.hu
Fix bug caused by m4 consuming pairs of square brackets (#108).
0 3 0
default
3 files changed with 3 insertions and 3 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
... ...
@@ -46,7 +46,7 @@
46 46
      #include <ilcplex/cplex.h>
47 47
      }
48 48

	
49
      int main(int argc, char* argv[])
49
      int main(int argc, char** argv)
50 50
      {
51 51
        CPXENVptr env = NULL;
52 52
        return 0;
Ignore white space 6 line context
... ...
@@ -42,7 +42,7 @@
42 42
      #include <glpk.h>
43 43
      }
44 44

	
45
      int main(int argc, char* argv[])
45
      int main(int argc, char** argv)
46 46
      {
47 47
        LPX *lp;
48 48
        lp = lpx_create_prob();
Ignore white space 6 line context
... ...
@@ -40,7 +40,7 @@
40 40
    lx_soplex_test_prog='
41 41
      #include <soplex/soplex.h>
42 42

	
43
      int main(int argc, char* argv[])
43
      int main(int argc, char** argv)
44 44
      {
45 45
        soplex::SoPlex soplex;
46 46
        return 0;
0 comments (0 inline)