COIN-OR::LEMON - Graph Library

Changeset 982:3e711ee55d31 in lemon-1.2 for lemon/concepts/graph.h


Ignore:
Timestamp:
08/07/13 06:29:34 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Children:
983:8b2d4e5d96e4, 986:552e3d1242c6
Phase:
public
Message:

Add explicit namespace to ignore_unused_variable_warning() usages (#294)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/graph.h

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