diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-22 12:17:57 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-22 12:17:57 +0000 |
commit | fcca8bc835db65ac170d1148d52a815df8838d53 (patch) | |
tree | c28d017961cb05f6360042e7a089f10641f174b4 /test/test-collection.cpp | |
parent | Add ManyPtr which tracks specified subclasses (diff) | |
download | ilt-fcca8bc835db65ac170d1148d52a815df8838d53.tar.bz2 ilt-fcca8bc835db65ac170d1148d52a815df8838d53.tar.xz ilt-fcca8bc835db65ac170d1148d52a815df8838d53.zip |
Invert how shared/unique is specified for Collection
Template param is a pointer now, typedefs added for ease.
Diffstat (limited to 'test/test-collection.cpp')
-rw-r--r-- | test/test-collection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test-collection.cpp b/test/test-collection.cpp index 00204fc..00298bb 100644 --- a/test/test-collection.cpp +++ b/test/test-collection.cpp @@ -34,10 +34,10 @@ public: } }; -using TestCollection = Collection<Base>; +using TestCollection = SharedCollection<Base>; -BOOST_TEST_DONT_PRINT_LOG_VALUE(Collection<Base>::Objects::const_iterator) -BOOST_TEST_DONT_PRINT_LOG_VALUE(Collection<Base>::Objects::const_reverse_iterator) +BOOST_TEST_DONT_PRINT_LOG_VALUE(TestCollection::Objects::const_iterator) +BOOST_TEST_DONT_PRINT_LOG_VALUE(TestCollection::Objects::const_reverse_iterator) BOOST_FIXTURE_TEST_SUITE(tc, TestCollection) |