Changeset 1249:2c2e8df67ddc in lemon for lemon/core.h
- Timestamp:
- 08/06/13 12:21:06 (11 years ago)
- Branch:
- 1.2
- Parents:
- 1244:af461bae0601 (diff), 1247:115031ac8001 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/core.h
r1238 r1249 39 39 40 40 #ifdef __GNUC__ 41 #define GCC_VERSION (__GNUC__ * 10000 \ 42 + __GNUC_MINOR__ * 100 \ 43 + __GNUC_PATCHLEVEL__) 44 #endif 45 46 #if GCC_VERSION >= 40800 41 47 // Needed by the [DI]GRAPH_TYPEDEFS marcos for gcc 4.8 42 48 #pragma GCC diagnostic ignored "-Wunused-local-typedefs" -
lemon/core.h
r1246 r1249 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-20 095 * Copyright (C) 2003-2010 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 1253 1253 protected: 1254 1254 1255 class AutoNodeMap : public ItemSetTraits<GR, Node>::template Map<Arc>::Type { 1255 class AutoNodeMap : public ItemSetTraits<GR, Node>::template Map<Arc>::Type 1256 { 1256 1257 typedef typename ItemSetTraits<GR, Node>::template Map<Arc>::Type Parent; 1257 1258 … … 1292 1293 }; 1293 1294 1294 protected: 1295 protected: 1295 1296 1296 1297 const Digraph &_g;
Note: See TracChangeset
for help on using the changeset viewer.