From cc38d0e5e424d5e95d9848725eb65302bf50659f Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 12 Mar 2018 17:27:21 +0100 Subject: [PATCH] Make searcher's method reset private. --- include/searcher.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/searcher.h b/include/searcher.h index 91a934cb6..9362f8b6e 100644 --- a/include/searcher.h +++ b/include/searcher.h @@ -189,7 +189,6 @@ class Searcher * Only used by getHtml. */ bool setSearchProtocolPrefix(const std::string prefix); - void reset(); #ifdef ENABLE_CTPP2 /** @@ -217,6 +216,10 @@ class Searcher unsigned int resultStart; unsigned int resultEnd; std::string contentHumanReadableId; + + private: + void reset(); + };