Unordered: Simplify the object count stuff.

[SVN r79355]
This commit is contained in:
Daniel James
2012-07-08 11:54:47 +00:00
parent ada08d9459
commit f5292fd9f7
2 changed files with 10 additions and 18 deletions

View File

@@ -26,7 +26,7 @@ namespace test
object generate(object const*);
implicitly_convertible generate(implicitly_convertible const*);
class object : private globally_counted_object
class object : private counted_object
{
friend class hash;
friend class equal_to;
@@ -64,7 +64,7 @@ namespace test
}
};
class implicitly_convertible : private globally_counted_object
class implicitly_convertible : private counted_object
{
int tag1_, tag2_;
public: