diff -r 115031ac8001 -r 3e711ee55d31 lemon/concept_check.h --- a/lemon/concept_check.h Tue Aug 06 12:04:13 2013 +0200 +++ b/lemon/concept_check.h Wed Aug 07 06:29:34 2013 +0200 @@ -58,7 +58,7 @@ { #if !defined(NDEBUG) void (Concept::*x)() = & Concept::constraints; - ignore_unused_variable_warning(x); + ::lemon::ignore_unused_variable_warning(x); #endif } @@ -68,7 +68,7 @@ #if !defined(NDEBUG) typedef typename Concept::template Constraints ConceptCheck; void (ConceptCheck::*x)() = & ConceptCheck::constraints; - ignore_unused_variable_warning(x); + ::lemon::ignore_unused_variable_warning(x); #endif }