From 2bede91fb70e68aafc67d1e2603e58971ad1061d Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 20 Aug 2021 17:07:25 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20some=20superfluous=20=E2=80=9Cstd::?= =?UTF-8?q?=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/book.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/book.hpp b/src/book.hpp index 4404299..cfc6125 100644 --- a/src/book.hpp +++ b/src/book.hpp @@ -57,10 +57,10 @@ struct book [[nodiscard]] document process_page(std::string_view text); //! Return last headline if possible. -[[nodiscard]] std::string headline(const document &doc, size_t pos); +[[nodiscard]] string headline(const document &doc, size_t pos); //! Return current page if possible. -[[nodiscard]] std::string page(const document &doc, size_t pos); +[[nodiscard]] string page(const document &doc, size_t pos); //! Returns the file path of the OPF file in the EPUB. [[nodiscard]] fs::path get_opf_file_path(const fs::path &zipfile);