1.1 --- a/lemon/concept_check.h Wed Nov 28 11:58:00 2012 +0100
1.2 +++ b/lemon/concept_check.h Wed Aug 07 06:55:05 2013 +0200
1.3 @@ -58,7 +58,7 @@
1.4 {
1.5 #if !defined(NDEBUG)
1.6 void (Concept::*x)() = & Concept::constraints;
1.7 - ignore_unused_variable_warning(x);
1.8 + ::lemon::ignore_unused_variable_warning(x);
1.9 #endif
1.10 }
1.11
1.12 @@ -68,7 +68,7 @@
1.13 #if !defined(NDEBUG)
1.14 typedef typename Concept::template Constraints<Type> ConceptCheck;
1.15 void (ConceptCheck::*x)() = & ConceptCheck::constraints;
1.16 - ignore_unused_variable_warning(x);
1.17 + ::lemon::ignore_unused_variable_warning(x);
1.18 #endif
1.19 }
1.20