Remove some superfluous “std::”.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
tastytea 2021-08-20 17:07:25 +02:00
parent 165592982a
commit 2bede91fb7
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 2 deletions

View File

@ -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);