lemon/concept_check.h
changeset 1184 3c00344f49c9
parent 1083 3e711ee55d31
     1.1 --- a/lemon/concept_check.h	Mon Jul 16 16:21:40 2018 +0200
     1.2 +++ b/lemon/concept_check.h	Wed Oct 17 19:14:07 2018 +0200
     1.3 @@ -2,7 +2,7 @@
     1.4   *
     1.5   * This file is a part of LEMON, a generic C++ optimization library.
     1.6   *
     1.7 - * Copyright (C) 2003-2009
     1.8 + * Copyright (C) 2003-2013
     1.9   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11   *
    1.12 @@ -58,7 +58,7 @@
    1.13    {
    1.14  #if !defined(NDEBUG)
    1.15      void (Concept::*x)() = & Concept::constraints;
    1.16 -    ignore_unused_variable_warning(x);
    1.17 +    ::lemon::ignore_unused_variable_warning(x);
    1.18  #endif
    1.19    }
    1.20  
    1.21 @@ -68,7 +68,7 @@
    1.22  #if !defined(NDEBUG)
    1.23      typedef typename Concept::template Constraints<Type> ConceptCheck;
    1.24      void (ConceptCheck::*x)() = & ConceptCheck::constraints;
    1.25 -    ignore_unused_variable_warning(x);
    1.26 +    ::lemon::ignore_unused_variable_warning(x);
    1.27  #endif
    1.28    }
    1.29