COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/graph.h

    r1257 r704  
    383383        /// This constructor sets the iterator to the first arc of \c g.
    384384        ///@param g the graph
    385         ArcIt(const Graph &g) { ::lemon::ignore_unused_variable_warning(g); }
     385        ArcIt(const Graph &g) { ignore_unused_variable_warning(g); }
    386386        /// Arc -> ArcIt conversion
    387387
     
    432432        ///@param g the graph
    433433        OutArcIt(const Graph& n, const Node& g) {
    434           ::lemon::ignore_unused_variable_warning(n);
    435           ::lemon::ignore_unused_variable_warning(g);
     434          ignore_unused_variable_warning(n);
     435          ignore_unused_variable_warning(g);
    436436        }
    437437        /// Arc -> OutArcIt conversion
     
    484484        ///@param g the graph
    485485        InArcIt(const Graph& g, const Node& n) {
    486           ::lemon::ignore_unused_variable_warning(n);
    487           ::lemon::ignore_unused_variable_warning(g);
     486          ignore_unused_variable_warning(n);
     487          ignore_unused_variable_warning(g);
    488488        }
    489489        /// Arc -> InArcIt conversion
Note: See TracChangeset for help on using the changeset viewer.