COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
08/07/13 07:08:38 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Further ignore_unused_variable_warning() explicit namespaces (#294)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/bpgraph.h

    r1217 r1262  
    524524        /// Sets the iterator to the first arc of the given graph.
    525525        ///
    526         explicit ArcIt(const BpGraph &g) { ignore_unused_variable_warning(g); }
     526        explicit ArcIt(const BpGraph &g)
     527        {
     528          ::lemon::ignore_unused_variable_warning(g);
     529        }
    527530        /// Sets the iterator to the given arc.
    528531
     
    570573        ///
    571574        OutArcIt(const BpGraph& n, const Node& g) {
    572           ignore_unused_variable_warning(n);
    573           ignore_unused_variable_warning(g);
     575          ::lemon::ignore_unused_variable_warning(n);
     576          ::lemon::ignore_unused_variable_warning(g);
    574577        }
    575578        /// Sets the iterator to the given arc.
     
    618621        ///
    619622        InArcIt(const BpGraph& g, const Node& n) {
    620           ignore_unused_variable_warning(n);
    621           ignore_unused_variable_warning(g);
     623          ::lemon::ignore_unused_variable_warning(n);
     624          ::lemon::ignore_unused_variable_warning(g);
    622625        }
    623626        /// Sets the iterator to the given arc.
Note: See TracChangeset for help on using the changeset viewer.