mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
Remove 'static' from next_node and node_count. Will hopefully make vacpp happy.
[SVN r55922]
This commit is contained in:
@ -25,13 +25,13 @@
|
||||
namespace boost { namespace unordered_detail {
|
||||
|
||||
template <class BucketPtr>
|
||||
static inline BucketPtr& next_node(BucketPtr ptr)
|
||||
inline BucketPtr& next_node(BucketPtr ptr)
|
||||
{
|
||||
return ptr->next_;
|
||||
}
|
||||
|
||||
template <class BucketPtr>
|
||||
static inline std::size_t node_count(BucketPtr ptr, BucketPtr end)
|
||||
inline std::size_t node_count(BucketPtr ptr, BucketPtr end)
|
||||
{
|
||||
std::size_t count = 0;
|
||||
while(ptr != end) {
|
||||
|
Reference in New Issue
Block a user