File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ int counting_helper::active = 0;
190
190
191
191
TEST (MaybeOwnedTest, NonOwningPointer) {
192
192
ASSERT_EQ (counting_helper::active, 0 );
193
- auto instance = std ::make_unique<counting_helper>(42 );
193
+ auto instance = cpptrace::detail ::make_unique<counting_helper>(42 );
194
194
EXPECT_EQ (counting_helper::active, 1 );
195
195
{
196
196
maybe_owned<counting_helper> non_owning (instance.get ());
@@ -204,7 +204,7 @@ TEST(MaybeOwnedTest, NonOwningPointer) {
204
204
205
205
TEST (MaybeOwnedTest, OwningPointer) {
206
206
ASSERT_EQ (counting_helper::active, 0 );
207
- auto instance = std ::make_unique<counting_helper>(42 );
207
+ auto instance = cpptrace::detail ::make_unique<counting_helper>(42 );
208
208
EXPECT_EQ (counting_helper::active, 1 );
209
209
{
210
210
maybe_owned<counting_helper> non_owning (std::move (instance));
You can’t perform that action at this time.
0 commit comments