diff -r 14394c9603c2 -r bdfc038f364c lemon/concept_check.h --- a/lemon/concept_check.h Tue Aug 06 12:19:11 2013 +0200 +++ b/lemon/concept_check.h Wed Aug 07 06:31:47 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 }