diff -r a26b90a17c81 -r 8b2d4e5d96e4 lemon/concept_check.h --- a/lemon/concept_check.h Wed Nov 28 11:58:00 2012 +0100 +++ b/lemon/concept_check.h Wed Aug 07 06:55:05 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 }