No children
gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Merge Intel C++ compatibility fixes to branch 1.1
0 7 0
merge 1.1
3 files changed with 37 insertions and 6 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
... ...
@@ -68,3 +68,3 @@
68 68
  ELSE()
69
    SET(CXX_WARNING "-Wall -W")
69
    SET(CXX_WARNING "-Wall")
70 70
  ENDIF()
... ...
@@ -75,6 +75,6 @@
75 75

	
76
SET( CMAKE_CXX_FLAGS_MAINTAINER "-Werror -ggdb" CACHE STRING
76
SET( CMAKE_CXX_FLAGS_MAINTAINER "-Werror -ggdb -O0" CACHE STRING
77 77
    "Flags used by the C++ compiler during maintainer builds."
78 78
    FORCE )
79
SET( CMAKE_C_FLAGS_MAINTAINER "-Werror" CACHE STRING
79
SET( CMAKE_C_FLAGS_MAINTAINER "-Werror -O0" CACHE STRING
80 80
    "Flags used by the C compiler during maintainer builds."
Ignore white space 6 line context
... ...
@@ -1249,2 +1249,3 @@
1249 1249
      _Visitor& visitor;
1250
      Constraints() {}
1250 1251
    };
Ignore white space 6 line context
... ...
@@ -117,2 +117,3 @@
117 117
        const _GraphItem &ib;
118
        Constraints() {}
118 119
      };
... ...
@@ -176,2 +177,3 @@
176 177
        const _Digraph& digraph;
178
        Constraints() {}
177 179
      };
... ...
@@ -292,2 +294,3 @@
292 294
        const _Graph& graph;
295
      Constraints() {}
293 296
      };
... ...
@@ -371,2 +374,3 @@
371 374
        const _Digraph& digraph;
375
        Constraints() {}
372 376
      };
... ...
@@ -423,2 +427,3 @@
423 427
        const _Graph& graph;
428
        Constraints() {}
424 429
      };
... ...
@@ -500,2 +505,3 @@
500 505
        const GR& g;
506
        Constraints() {}
501 507
      };
... ...
@@ -588,2 +594,3 @@
588 594
        const GR& graph;
595
        Constraints() {}
589 596
      };
... ...
@@ -764,2 +771,3 @@
764 771
        const _Digraph& digraph;
772
        Constraints() {}
765 773
      };
... ...
@@ -888,2 +896,3 @@
888 896
        const _Graph& graph;
897
        Constraints() {}
889 898
      };
... ...
@@ -945,2 +954,3 @@
945 954
        const _Digraph& digraph;
955
        Constraints() {}
946 956
      };
... ...
@@ -986,2 +996,3 @@
986 996
        const _Graph& graph;
997
        Constraints() {}
987 998
      };
... ...
@@ -1063,2 +1074,3 @@
1063 1074
        const typename GraphMap::Value &t;
1075
        Constraints() {}
1064 1076
      };
... ...
@@ -1201,2 +1213,3 @@
1201 1213
        const _Digraph& digraph;
1214
        Constraints() {}
1202 1215
      };
... ...
@@ -1286,2 +1299,3 @@
1286 1299
        const _Graph& graph;
1300
        Constraints() {}
1287 1301
      };
... ...
@@ -1330,2 +1344,3 @@
1330 1344
        _Digraph& digraph;
1345
        Constraints() {}
1331 1346
      };
... ...
@@ -1374,2 +1389,3 @@
1374 1389
        _Graph& graph;
1390
        Constraints() {}
1375 1391
      };
... ...
@@ -1413,2 +1429,3 @@
1413 1429
        _Digraph& digraph;
1430
        Constraints() {}
1414 1431
      };
... ...
@@ -1452,2 +1469,3 @@
1452 1469
        _Graph& graph;
1470
        Constraints() {}
1453 1471
      };
... ...
@@ -1480,2 +1498,3 @@
1480 1498
        _Digraph& digraph;
1499
        Constraints() {}
1481 1500
      };
... ...
@@ -1508,2 +1527,3 @@
1508 1527
        _Graph& graph;
1528
        Constraints() {}
1509 1529
      };
Ignore white space 6 line context
... ...
@@ -254,2 +254,3 @@
254 254
        ItemIntMap& map;
255
        Constraints() {}
255 256
      };
Ignore white space 6 line context
... ...
@@ -70,2 +70,3 @@
70 70
        const _ReadMap& m;
71
        Constraints() {}
71 72
      };
... ...
@@ -111,2 +112,3 @@
111 112
        _WriteMap& m;
113
        Constraints() {}
112 114
      };
... ...
@@ -131,3 +133,4 @@
131 133
      Value operator[](const Key &) const {
132
        return *static_cast<Value *>(0);
134
        Value *r = 0;
135
        return *r;
133 136
      }
... ...
@@ -171,3 +174,4 @@
171 174
      Reference operator[](const Key &) {
172
        return *static_cast<Value *>(0);
175
        Value *r = 0;
176
        return *r;
173 177
      }
... ...
@@ -176,3 +180,4 @@
176 180
      ConstReference operator[](const Key &) const {
177
        return *static_cast<Value *>(0);
181
        Value *r = 0;
182
        return *r;
178 183
      }
... ...
@@ -207,2 +212,3 @@
207 212
        _ReferenceMap& m;
213
        Constraints() {}
208 214
      };
Ignore white space 6 line context
... ...
@@ -161,2 +161,3 @@
161 161
        _Path& p;
162
        PathDumperConstraints() {}
162 163
      };
... ...
@@ -186,2 +187,3 @@
186 187
        _Path& p;
188
        PathDumperConstraints() {}
187 189
      };
Ignore white space 2 line context
... ...
@@ -1193,2 +1193,3 @@
1193 1193
      _Visitor& visitor;
1194
      Constraints() {}
1194 1195
    };
0 comments (0 inline)