Changeset 1135:c199e9976d93 in lemon-main
- Timestamp:
- 04/28/15 18:07:44 (10 years ago)
- Branch:
- default
- Children:
- 1136:20f95cd51aba, 1137:ca4e4a5e9b6e
- Phase:
- public
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/bits/windows.cc
r1134 r1135 21 21 22 22 #include<lemon/bits/windows.h> 23 24 #if defined(LEMON_WIN32) && defined(__GNUC__) 25 #pragma GCC diagnostic ignored "-Wold-style-cast" 26 #endif 23 27 24 28 #ifdef LEMON_WIN32 -
lemon/core.h
r1123 r1135 20 20 #define LEMON_CORE_H 21 21 22 #include <vector> 23 #include <algorithm> 24 25 #include <lemon/config.h> 26 #include <lemon/bits/enable_if.h> 27 #include <lemon/bits/traits.h> 28 #include <lemon/assert.h> 22 ///\file 23 ///\brief LEMON core utilities. 24 /// 25 ///This header file contains core utilities for LEMON. 26 ///It is automatically included by all graph types, therefore it usually 27 ///do not have to be included directly. 29 28 30 29 // Disable the following warnings when compiling with MSVC: … … 44 43 #endif 45 44 46 ///\file 47 ///\brief LEMON core utilities. 48 /// 49 ///This header file contains core utilities for LEMON. 50 ///It is automatically included by all graph types, therefore it usually 51 ///do not have to be included directly. 45 #include <vector> 46 #include <algorithm> 47 48 #include <lemon/config.h> 49 #include <lemon/bits/enable_if.h> 50 #include <lemon/bits/traits.h> 51 #include <lemon/assert.h> 52 53 52 54 53 55 namespace lemon { -
test/radix_sort_test.cc
r1092 r1135 16 16 * 17 17 */ 18 19 #include <lemon/core.h> 18 20 19 21 #include <lemon/time_measure.h>
Note: See TracChangeset
for help on using the changeset viewer.