add missing namespace qualifier

This commit is contained in:
Sébastien Loriot 2017-01-11 16:31:49 +01:00
parent 1a6973c48e
commit c96fcfcf16
1 changed files with 2 additions and 2 deletions

View File

@ -276,8 +276,8 @@ struct Nth_of_tuple_property_map<N,std::tuple<T...> >
value_type& operator[](key_type& tuple) const { return get<N>(tuple); } value_type& operator[](key_type& tuple) const { return get<N>(tuple); }
typedef Nth_of_tuple_property_map<N,Tuple> Self; typedef Nth_of_tuple_property_map<N,Tuple> Self;
friend reference get(const Self&,const key_type& k) {return get<N>(k);} friend reference get(const Self&,const key_type& k) {return std::get<N>(k);}
friend void put(const Self&,key_type& k, const value_type& v) {get<N>(k)=v;} friend void put(const Self&,key_type& k, const value_type& v) {std::get<N>(k)=v;}
}; };
#endif #endif