1.1 --- a/lemon/bits/debug_map.h Tue Oct 24 16:49:41 2006 +0000
1.2 +++ b/lemon/bits/debug_map.h Tue Oct 24 17:19:16 2006 +0000
1.3 @@ -29,7 +29,7 @@
1.4 #include <lemon/bits/alteration_notifier.h>
1.5
1.6 #include <lemon/concept_check.h>
1.7 -#include <lemon/concept/maps.h>
1.8 +#include <lemon/concepts/maps.h>
1.9
1.10 ///\ingroup graphbits
1.11 ///
1.12 @@ -186,7 +186,7 @@
1.13 /// is assigned by the value of the given ReadMap.
1.14 template <typename CMap>
1.15 DebugMap& operator=(const CMap& cmap) {
1.16 - checkConcept<concept::ReadMap<Key, _Value>, CMap>();
1.17 + checkConcept<concepts::ReadMap<Key, _Value>, CMap>();
1.18 const typename Parent::Notifier* notifier = Parent::getNotifier();
1.19 Item it;
1.20 for (notifier->first(it); it != INVALID; notifier->next(it)) {