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/index.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'indexlib/index.h') diff --git a/indexlib/index.h b/indexlib/index.h index b7c683755..5ffab2d4e 100644 --- a/indexlib/index.h +++ b/indexlib/index.h @@ -61,7 +61,7 @@ struct result { * @return null if the type does not support this or the particular search string makes it impossible to * fulfill the search request. */ - virtual std::auto_ptr search( const char* ) = 0; + virtual std::unique_ptr search( const char* ) = 0; }; struct index { @@ -96,7 +96,7 @@ struct index { /** * Returns all documents matching \param pattern. */ - virtual std::auto_ptr search( const char* pattern ) const = 0; + virtual std::unique_ptr search( const char* pattern ) const = 0; /** * Returns the number of docs indexed. -- cgit v1.2.1