From d2f343cc239e1fa25c9581cf35bada96692c41db Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 23 Jan 2024 10:13:00 +0900 Subject: Replace auto_ptr Signed-off-by: Michele Calgaro --- indexlib/tests/create-test.cpp | 4 ++-- indexlib/tests/mempool-test.cpp | 4 ++-- indexlib/tests/tokenizer-test.cpp | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) (limited to 'indexlib/tests') diff --git a/indexlib/tests/create-test.cpp b/indexlib/tests/create-test.cpp index beeb7d5f9..da3c91ca5 100644 --- a/indexlib/tests/create-test.cpp +++ b/indexlib/tests/create-test.cpp @@ -14,8 +14,8 @@ void cleanup() { void simple() { cleanup(); - std::auto_ptr ptr = indexlib::create( fname ); - BOOST_CHECK( ptr.get() ); + std::unique_ptr ptr = indexlib::create( fname ); + BOOST_CHECK( ptr ); } test_suite* get_suite() { diff --git a/indexlib/tests/mempool-test.cpp b/indexlib/tests/mempool-test.cpp index a0895243c..1c9a4eb61 100644 --- a/indexlib/tests/mempool-test.cpp +++ b/indexlib/tests/mempool-test.cpp @@ -11,7 +11,7 @@ void cleanup() { void deallocate() { cleanup(); - mempool pool( std::auto_ptr( new mmap_manager( fname ) ) ); + mempool pool( std::unique_ptr( new mmap_manager( fname ) ) ); std::vector pointers; for ( int i = 0; i != 32; ++i ) { @@ -33,7 +33,7 @@ void deallocate() { void large() { cleanup(); - mempool pool( std::auto_ptr( new mmap_manager( fname ) ) ); + mempool pool( std::unique_ptr( new mmap_manager( fname ) ) ); pool.allocate( 4095 ); pool.allocate( 4097 ); diff --git a/indexlib/tests/tokenizer-test.cpp b/indexlib/tests/tokenizer-test.cpp index 372859d90..1354ddcd6 100644 --- a/indexlib/tests/tokenizer-test.cpp +++ b/indexlib/tests/tokenizer-test.cpp @@ -9,8 +9,8 @@ using indexlib::detail::tokenizer; using indexlib::detail::get_tokenizer; void simple() { - std::auto_ptr tokenizer = get_tokenizer( "latin-1:european" ); - assert(tokenizer.get()); + std::unique_ptr tokenizer = get_tokenizer( "latin-1:european" ); + assert(tokenizer); std::vector tokens = tokenizer->string_to_words( "one ,as, ''#`:ThReE, בבאחי" ); std::vector expected; expected.push_back( "ONE" ); @@ -26,8 +26,8 @@ void simple() { } void with_newlines() { - std::auto_ptr tokenizer = get_tokenizer( "latin-1:european" ); - assert(tokenizer.get()); + std::unique_ptr tokenizer = get_tokenizer( "latin-1:european" ); + assert(tokenizer); std::vector tokens = tokenizer->string_to_words( "one\ntwo\nthree" ); std::vector expected; expected.push_back( "ONE" ); @@ -42,8 +42,8 @@ void with_newlines() { } void with_numbers() { - std::auto_ptr tokenizer = get_tokenizer( "latin-1:european" ); - assert(tokenizer.get()); + std::unique_ptr tokenizer = get_tokenizer( "latin-1:european" ); + assert(tokenizer); std::vector tokens = tokenizer->string_to_words( "one 012 123 four" ); std::vector expected; expected.push_back( "ONE" ); -- cgit v1.2.1