mirror of
https://github.com/boostorg/graph.git
synced 2026-01-30 07:52:10 +00:00
Don't call boost::get qualified
[SVN r33286]
This commit is contained in:
@@ -135,11 +135,13 @@ public:
|
||||
*/
|
||||
template <class ExternalData>
|
||||
inline void swap(ArrayBinaryTreeNode x, ExternalData& edata ) {
|
||||
using boost::get;
|
||||
|
||||
value_type tmp = x.value();
|
||||
|
||||
/*swap external data*/
|
||||
edata[ boost::get(id, tmp) ] = i;
|
||||
edata[ boost::get(id, value()) ] = x.i;
|
||||
edata[ get(id, tmp) ] = i;
|
||||
edata[ get(id, value()) ] = x.i;
|
||||
|
||||
x.value() = value();
|
||||
value() = tmp;
|
||||
|
||||
Reference in New Issue
Block a user