2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 08:32:11 +00:00

Fixed VC++ warning

[SVN r60998]
This commit is contained in:
Jeremiah Willcock
2010-04-02 15:05:44 +00:00
parent 1a52f5132f
commit 109cdf39be

View File

@@ -65,7 +65,7 @@ namespace boost {
inline indirect_pmap(const ReadablePropertyMap& df)
: d(df) { }
inline bool operator()(const K& u) const {
inline T operator()(const K& u) const {
return get(d, u);
}
protected: