Fix compilation error in non-template class

fix #267
This commit is contained in:
Vinnie Falco
2017-02-18 07:00:06 -05:00
parent fa7fea8f02
commit 6dfd9f9fe8
2 changed files with 5 additions and 4 deletions
+4 -4
View File
@@ -94,11 +94,11 @@ protected:
}
};
using list_t = typename boost::intrusive::make_list<
element, boost::intrusive::constant_time_size<false>>::type;
using list_t = boost::intrusive::make_list<element,
boost::intrusive::constant_time_size<false>>::type;
using set_t = typename boost::intrusive::make_multiset<
element, boost::intrusive::constant_time_size<true>,
using set_t = boost::intrusive::make_multiset<element,
boost::intrusive::constant_time_size<true>,
boost::intrusive::compare<less>>::type;
// data