COIN-OR::LEMON - Graph Library

Changeset 2329:3f4a04a9b7bf in lemon-0.x for lemon/bits/traits.h


Ignore:
Timestamp:
12/12/06 14:35:52 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3105
Message:

clone => build renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/traits.h

    r2290 r2329  
    325325
    326326  template <typename Graph, typename Enable = void>
    327   struct CloneableTagIndicator {
    328     static const bool value = false;
    329   };
    330 
    331   template <typename Graph>
    332   struct CloneableTagIndicator<
    333     Graph,
    334     typename enable_if<typename Graph::CloneableTag, void>::type
     327  struct BuildTagIndicator {
     328    static const bool value = false;
     329  };
     330
     331  template <typename Graph>
     332  struct BuildTagIndicator<
     333    Graph,
     334    typename enable_if<typename Graph::BuildTag, void>::type
    335335  > {
    336336    static const bool value = true;
Note: See TracChangeset for help on using the changeset viewer.