From ddccf329bbce85bbb355129184a7d639e05b8d98 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Mon, 20 Apr 2026 23:29:19 +0300 Subject: [PATCH] Avoid using templated initial_path() Templated initial_path() overloads have been marked as deprecated in Boost.Filesystem v3 and removed in v4. Use the non-templated equivalent. --- src/quickbook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quickbook.cpp b/src/quickbook.cpp index cc8fe0dcb..85b0a9e32 100644 --- a/src/quickbook.cpp +++ b/src/quickbook.cpp @@ -280,7 +280,7 @@ int main(int argc, char* argv[]) // First thing, the filesystem should record the current working // directory. - fs::initial_path(); + fs::initial_path(); // Various initialisation methods quickbook::detail::initialise_output();