Remove 'static' from next_node and node_count. Will hopefully make vacpp happy.

[SVN r55922]
This commit is contained in:
Daniel James
2009-08-31 15:33:49 +00:00
parent 848b73f99f
commit 1743ed118d

View File

@ -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) {