equal
  deleted
  inserted
  replaced
  
    
    
    18   | 
    18   | 
    19 #include <deque>  | 
    19 #include <deque>  | 
    20 #include <set>  | 
    20 #include <set>  | 
    21   | 
    21   | 
    22 #include <lemon/concept_check.h>  | 
    22 #include <lemon/concept_check.h>  | 
    23 #include <lemon/concept/maps.h>  | 
    23 #include <lemon/concepts/maps.h>  | 
    24 #include <lemon/maps.h>  | 
    24 #include <lemon/maps.h>  | 
    25   | 
    25   | 
    26 #include "test_tools.h"  | 
    26 #include "test_tools.h"  | 
    27   | 
    27   | 
    28 using namespace lemon;  | 
    28 using namespace lemon;  | 
    29 using namespace lemon::concept;  | 
    29 using namespace lemon::concepts;  | 
    30   | 
    30   | 
    31 struct A {}; | 
    31 struct A {}; | 
    32 inline bool operator<(A, A) { return true; } | 
    32 inline bool operator<(A, A) { return true; } | 
    33 struct B {}; | 
    33 struct B {}; | 
    34   | 
    34   |