Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't build fmt as a module #4234

Closed
LHLaurini opened this issue Nov 10, 2024 · 3 comments
Closed

Can't build fmt as a module #4234

LHLaurini opened this issue Nov 10, 2024 · 3 comments

Comments

@LHLaurini
Copy link

LHLaurini commented Nov 10, 2024

Building fmt as a module is currently failing (both GCC and Clang). I used the following:

cmake -DFMT_MODULE=1 -DFMT_TEST=0 ..

I've bisected the issue to the following commit: 680db66. The commit immediately before works fine.

PS: Reverting the commit also works.

PS2: Apparently you're not supposed to build fmt directly as a module, but to use it with add_subdirectory. Regardless, I get similar errors.

@vitaut
Copy link
Contributor

vitaut commented Nov 10, 2024

Please provide the full error(s) that you get and the compiler versions.

@LHLaurini
Copy link
Author

Testing with the example from https://vitaut.net/posts/2023/simple-cxx20-modules/

GCC 14.2.1 and Clang 18.1.8 are the versions packaged by Arch Linux. For Clang 19.1.3 I used the binaries from llvm-project's github.

Clang 19.1.3 (also checked 18.1.8, make output is identical):

$ CXX=clang++ cmake -DFMT_MODULE=ON ..
-- The CXX compiler identification is Clang 19.1.3
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /home/luizhenrique/.local/bin/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- {fmt} version: 11.0.2
-- Build type: 
-- Performing Test HAS_NULLPTR_WARNING
-- Performing Test HAS_NULLPTR_WARNING - Success
-- Configuring done (0.6s)
-- Generating done (0.0s)
-- Build files have been written to: /home/luizhenrique/Desktop/Projetos/modules-test/build
$ make
[ 20%] Generating fmt.pcm
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:115:
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/args.h:17:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:44:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   44 | #  include <cmath>    // std::signbit
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:47:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   47 | #  include <cstring>  // std::memcpy
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:968:12: error: expected template
  968 | FMT_EXPORT constexpr auto compile_string_to_view(const Char (&s)[N])
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:968:56: error: unknown type name 'Char'; did you mean 'char'?
  968 | FMT_EXPORT constexpr auto compile_string_to_view(const Char (&s)[N])
      |                                                        ^~~~
      |                                                        char
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:968:66: error: use of undeclared identifier 'N'
  968 | FMT_EXPORT constexpr auto compile_string_to_view(const Char (&s)[N])
      |                                                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:969:26: error: use of undeclared identifier 'Char'; did you mean 'char'?
  969 |     -> basic_string_view<Char> {
      |                          ^~~~
      |                          char
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:972:36: error: use of undeclared identifier 'Char'; did you mean 'char'?
  972 |   return {s, N - (std::char_traits<Char>::to_int_type(s[N - 1]) == 0 ? 1 : 0)};
      |                                    ^~~~
      |                                    char
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:972:57: error: use of undeclared identifier 'N'
  972 |   return {s, N - (std::char_traits<Char>::to_int_type(s[N - 1]) == 0 ? 1 : 0)};
      |                                                         ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:972:14: error: use of undeclared identifier 'N'
  972 |   return {s, N - (std::char_traits<Char>::to_int_type(s[N - 1]) == 0 ? 1 : 0)};
      |              ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:12: error: expected template
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:68: error: use of undeclared identifier 'Char'; did you mean 'char'?
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      |                                                                    ^~~~
      |                                                                    char
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:976:26: error: use of undeclared identifier 'Char'; did you mean 'char'?
  976 |     -> basic_string_view<Char> {
      |                          ^~~~
      |                          char
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:3720:7: error: cannot export redeclaration 'loc_value' here since the previous declaration has module linkage
 3720 | class loc_value {
      |       ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:955:7: note: previous declaration is here
  955 | class loc_value;
      |       ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:116:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:14:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   14 | #  include <cmath>    // std::isfinite
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:15:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   15 | #  include <cstring>  // std::memcpy
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:16:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   16 | #  include <ctime>
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:1113:43: error: 'compile_string_to_view' does not name a template but is followed by template arguments
 1113 |   fmt::format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"),
      |                                           ^~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: note: expanded from macro 'FMT_STRING_IMPL'
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^                     ~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:27: note: non-template declaration found by name lookup
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      |                           ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:116:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:1113:43: error: no return statement in constexpr function
 1113 |   fmt::format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"),
      |                                           ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4074:26: note: expanded from macro 'FMT_STRING_IMPL'
 4074 |       constexpr explicit operator fmt::basic_string_view<char_type>() const { \
      |                          ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:117:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/color.h:472:12: error: 'compile_string_to_view' does not name a template but is followed by template arguments
  472 |   print(f, FMT_STRING("{}"), string_view(buf.begin(), buf.size()));
      |            ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: note: expanded from macro 'FMT_STRING_IMPL'
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^                     ~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:27: note: non-template declaration found by name lookup
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      |                           ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:117:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/color.h:472:12: error: no return statement in constexpr function
  472 |   print(f, FMT_STRING("{}"), string_view(buf.begin(), buf.size()));
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4074:26: note: expanded from macro 'FMT_STRING_IMPL'
 4074 |       constexpr explicit operator fmt::basic_string_view<char_type>() const { \
      |                          ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:121:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/os.h:14:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   14 | #  include <cerrno>
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/os.h:16:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   16 | #  include <cstdio>
      |            ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:126:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:18:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   18 | #  include <cstdlib>
      |            ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:169:24: error: 'compile_string_to_view' does not name a template but is followed by template arguments
  169 |     return fmt::format(FMT_STRING("{}"), base);
      |                        ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: note: expanded from macro 'FMT_STRING_IMPL'
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^                     ~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:27: note: non-template declaration found by name lookup
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      |                           ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:126:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:169:24: error: no return statement in constexpr function
  169 |     return fmt::format(FMT_STRING("{}"), base);
      |                        ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4074:26: note: expanded from macro 'FMT_STRING_IMPL'
 4074 |       constexpr explicit operator fmt::basic_string_view<char_type>() const { \
      |                          ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:126:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:175:24: error: 'compile_string_to_view' does not name a template but is followed by template arguments
  175 |     return fmt::format(FMT_STRING("{:g}"), base);
      |                        ^~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: note: expanded from macro 'FMT_STRING_IMPL'
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^                     ~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:27: note: non-template declaration found by name lookup
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      |                           ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:126:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:175:24: error: no return statement in constexpr function
  175 |     return fmt::format(FMT_STRING("{:g}"), base);
      |                        ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: expanded from macro 'FMT_STRING'
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4074:26: note: expanded from macro 'FMT_STRING_IMPL'
 4074 |       constexpr explicit operator fmt::basic_string_view<char_type>() const { \
      |                          ^
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:127:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h:17:12: warning: '#include <filename>' attaches the declarations to the named module 'fmt', which is not usually intended; consider moving that directive before the module declaration [-Winclude-angled-in-module-purview]
   17 | #  include <cwchar>
      |            ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
9 warnings and 20 errors generated.
make[2]: *** [fmt/CMakeFiles/fmt.dir/build.make:74: fmt/fmt.pcm] Error 1
make[1]: *** [CMakeFiles/Makefile2:139: fmt/CMakeFiles/fmt.dir/all] Error 2
make: *** [Makefile:136: all] Error 2

GCC 14.2.1:

$ rm -r *; cmake -DFMT_MODULE=ON ..
-- The CXX compiler identification is GNU 14.2.1
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- {fmt} version: 11.0.2
-- Build type: 
-- Configuring done (0.3s)
-- Generating done (0.0s)
-- Build files have been written to: /home/luizhenrique/Desktop/Projetos/modules-test/build
$ make
[ 25%] Building CXX object fmt/CMakeFiles/fmt.dir/src/fmt.cc.o
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:96:20: error: expected unqualified-id before ‘export’
   96 | #define FMT_EXPORT export
      |                    ^~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:968:1: note: in expansion of macro ‘FMT_EXPORT’
  968 | FMT_EXPORT constexpr auto compile_string_to_view(const Char (&s)[N])
      | ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:96:20: error: expected unqualified-id before ‘export’
   96 | #define FMT_EXPORT export
      |                    ^~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:975:1: note: in expansion of macro ‘FMT_EXPORT’
  975 | FMT_EXPORT constexpr auto compile_string_to_view(basic_string_view<Char> s)
      | ^~~~~~~~~~
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/args.h:17,
                 from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:115:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:3720:7: error: conflicting exporting for declaration ‘class fmt::v11::loc_value’
 3720 | class loc_value {
      |       ^~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:955:7: note: previously declared here without exporting
  955 | class loc_value;
      |       ^~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h: In member function ‘constexpr fmt::v11::detail::write_floating_seconds(fmt::v11::memory_buffer&, Duration, int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:1113:43: note: in expansion of macro ‘FMT_STRING’
 1113 |   fmt::format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"),
      |                                           ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/chrono.h:1113:43: note: in expansion of macro ‘FMT_STRING’
 1113 |   fmt::format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"),
      |                                           ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/color.h: In member function ‘constexpr fmt::v11::vprint(FILE*, const text_style&, string_view, format_args)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/color.h:472:12: note: in expansion of macro ‘FMT_STRING’
  472 |   print(f, FMT_STRING("{}"), string_view(buf.begin(), buf.size()));
      |            ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/color.h:472:12: note: in expansion of macro ‘FMT_STRING’
  472 |   print(f, FMT_STRING("{}"), string_view(buf.begin(), buf.size()));
      |            ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h: In member function ‘constexpr fmt::v11::path::display_string() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:169:24: note: in expansion of macro ‘FMT_STRING’
  169 |     return fmt::format(FMT_STRING("{}"), base);
      |                        ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:169:24: note: in expansion of macro ‘FMT_STRING’
  169 |     return fmt::format(FMT_STRING("{}"), base);
      |                        ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h: In member function ‘constexpr fmt::v11::path::generic_display_string() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:175:24: note: in expansion of macro ‘FMT_STRING’
  175 |     return fmt::format(FMT_STRING("{:g}"), base);
      |                        ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:175:24: note: in expansion of macro ‘FMT_STRING’
  175 |     return fmt::format(FMT_STRING("{:g}"), base);
      |                        ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h: In member function ‘constexpr fmt::v11::vprint(FILE*, wstring_view, wformat_args)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h:295:35: note: in expansion of macro ‘FMT_STRING’
  295 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h:295:35: note: in expansion of macro ‘FMT_STRING’
  295 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h: In member function ‘constexpr fmt::v11::to_wstring(const T&)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<wchar_t>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h:363:17: note: in expansion of macro ‘FMT_STRING’
  363 |   return format(FMT_STRING(L"{}"), value);
      |                 ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h:363:17: note: in expansion of macro ‘FMT_STRING’
  363 |   return format(FMT_STRING(L"{}"), value);
      |                 ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:61:24: note: in expansion of macro ‘FMT_STRING’
   61 |     fmt::format_to(it, FMT_STRING("{}{}"), message, SEP);
      |                        ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:61:24: note: in expansion of macro ‘FMT_STRING’
   61 |     fmt::format_to(it, FMT_STRING("{}{}"), message, SEP);
      |                        ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:62:22: note: in expansion of macro ‘FMT_STRING’
   62 |   fmt::format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code);
      |                      ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:62:22: note: in expansion of macro ‘FMT_STRING’
   62 |   fmt::format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code);
      |                      ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::detail::fwrite_all(const void*, size_t, FILE*)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:79:35: note: in expansion of macro ‘FMT_STRING’
   79 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:79:35: note: in expansion of macro ‘FMT_STRING’
   79 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1396:35: note: in expansion of macro ‘FMT_STRING’
 1396 |         out = fmt::format_to(out, FMT_STRING("{:x}"), value);
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1396:35: note: in expansion of macro ‘FMT_STRING’
 1396 |         out = fmt::format_to(out, FMT_STRING("{:x}"), value);
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1400:33: note: in expansion of macro ‘FMT_STRING’
 1400 |       out = fmt::format_to(out, FMT_STRING("{:08x}"), value);
      |                                 ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1400:33: note: in expansion of macro ‘FMT_STRING’
 1400 |       out = fmt::format_to(out, FMT_STRING("{:08x}"), value);
      |                                 ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1403:33: note: in expansion of macro ‘FMT_STRING’
 1403 |       out = fmt::format_to(out, FMT_STRING("p{}"),
      |                                 ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1403:33: note: in expansion of macro ‘FMT_STRING’
 1403 |       out = fmt::format_to(out, FMT_STRING("p{}"),
      |                                 ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::detail::file_base<F>::get()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1498:37: note: in expansion of macro ‘FMT_STRING’
 1498 |       FMT_THROW(system_error(errno, FMT_STRING("getc failed")));
      |                                     ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1498:37: note: in expansion of macro ‘FMT_STRING’
 1498 |       FMT_THROW(system_error(errno, FMT_STRING("getc failed")));
      |                                     ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h: In member function ‘constexpr fmt::v11::detail::file_base<F>::unget(char)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1505:37: note: in expansion of macro ‘FMT_STRING’
 1505 |       FMT_THROW(system_error(errno, FMT_STRING("ungetc failed")));
      |                                     ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1505:37: note: in expansion of macro ‘FMT_STRING’
 1505 |       FMT_THROW(system_error(errno, FMT_STRING("ungetc failed")));
      |                                     ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::buffered_file::buffered_file(fmt::v11::cstring_view, fmt::v11::cstring_view)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:176:35: note: in expansion of macro ‘FMT_STRING’
  176 |     FMT_THROW(system_error(errno, FMT_STRING("cannot open file {}"),
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:176:35: note: in expansion of macro ‘FMT_STRING’
  176 |     FMT_THROW(system_error(errno, FMT_STRING("cannot open file {}"),
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::buffered_file::close()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:185:35: note: in expansion of macro ‘FMT_STRING’
  185 |     FMT_THROW(system_error(errno, FMT_STRING("cannot close file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:185:35: note: in expansion of macro ‘FMT_STRING’
  185 |     FMT_THROW(system_error(errno, FMT_STRING("cannot close file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::buffered_file::descriptor() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:201:35: note: in expansion of macro ‘FMT_STRING’
  201 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get file descriptor")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:201:35: note: in expansion of macro ‘FMT_STRING’
  201 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get file descriptor")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::file(fmt::v11::cstring_view, int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:222:29: note: in expansion of macro ‘FMT_STRING’
  222 |         system_error(errno, FMT_STRING("cannot open file {}"), path.c_str()));
      |                             ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:222:29: note: in expansion of macro ‘FMT_STRING’
  222 |         system_error(errno, FMT_STRING("cannot open file {}"), path.c_str()));
      |                             ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::close()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:240:35: note: in expansion of macro ‘FMT_STRING’
  240 |     FMT_THROW(system_error(errno, FMT_STRING("cannot close file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:240:35: note: in expansion of macro ‘FMT_STRING’
  240 |     FMT_THROW(system_error(errno, FMT_STRING("cannot close file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::size() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:262:35: note: in expansion of macro ‘FMT_STRING’
  262 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get file attributes")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:262:35: note: in expansion of macro ‘FMT_STRING’
  262 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get file attributes")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::read(void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:273:35: note: in expansion of macro ‘FMT_STRING’
  273 |     FMT_THROW(system_error(errno, FMT_STRING("cannot read from file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:273:35: note: in expansion of macro ‘FMT_STRING’
  273 |     FMT_THROW(system_error(errno, FMT_STRING("cannot read from file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::write(const void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:281:35: note: in expansion of macro ‘FMT_STRING’
  281 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:281:35: note: in expansion of macro ‘FMT_STRING’
  281 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::dup(int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:291:16: note: in expansion of macro ‘FMT_STRING’
  291 |         errno, FMT_STRING("cannot duplicate file descriptor {}"), fd));
      |                ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:291:16: note: in expansion of macro ‘FMT_STRING’
  291 |         errno, FMT_STRING("cannot duplicate file descriptor {}"), fd));
      |                ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::dup2(int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:300:16: note: in expansion of macro ‘FMT_STRING’
  300 |         errno, FMT_STRING("cannot duplicate file descriptor {} to {}"), fd_,
      |                ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:300:16: note: in expansion of macro ‘FMT_STRING’
  300 |         errno, FMT_STRING("cannot duplicate file descriptor {} to {}"), fd_,
      |                ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::file::fdopen(const char*)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:320:16: note: in expansion of macro ‘FMT_STRING’
  320 |         errno, FMT_STRING("cannot associate stream with file descriptor")));
      |                ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:320:16: note: in expansion of macro ‘FMT_STRING’
  320 |         errno, FMT_STRING("cannot associate stream with file descriptor")));
      |                ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::pipe::pipe()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:351:35: note: in expansion of macro ‘FMT_STRING’
  351 |     FMT_THROW(system_error(errno, FMT_STRING("cannot create pipe")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:351:35: note: in expansion of macro ‘FMT_STRING’
  351 |     FMT_THROW(system_error(errno, FMT_STRING("cannot create pipe")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc: In member function ‘constexpr fmt::v11::getpagesize()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>() const’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:29: error: ‘compile_string_to_view’ is not a member of ‘fmt::v11::detail’; did you mean ‘compile_string’?
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                             ^~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:371:35: note: in expansion of macro ‘FMT_STRING’
  371 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get memory page size")));
      |                                   ^~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4075:61: error: expected primary-expression before ‘>’ token
 4075 |         return fmt::detail::compile_string_to_view<char_type>(s);             \
      |                                                             ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:146:34: note: in definition of macro ‘FMT_THROW’
  146 | #      define FMT_THROW(x) throw x
      |                                  ^
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:4092:23: note: in expansion of macro ‘FMT_STRING_IMPL’
 4092 | #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
      |                       ^~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:371:35: note: in expansion of macro ‘FMT_STRING’
  371 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get memory page size")));
      |                                   ^~~~~~~~~~
In file included from /home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format.h:41:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::vprint(FILE*, const text_style&, string_view, format_args)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {fmt::v11::basic_string_view<char>}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/color.h:472:8:   required from here
  472 |   print(f, FMT_STRING("{}"), string_view(buf.begin(), buf.size()));
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::vprint(FILE*, const text_style&, string_view, format_args)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::vprint(FILE*, const text_style&, string_view, format_args)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::path::display_string() const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {const std::filesystem::__cxx11::path&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:169:23:   required from here
  169 |     return fmt::format(FMT_STRING("{}"), base);
      |            ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::path::display_string() const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::path::display_string() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::path::generic_display_string() const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {const std::filesystem::__cxx11::path&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/std.h:175:23:   required from here
  175 |     return fmt::format(FMT_STRING("{:g}"), base);
      |            ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::path::generic_display_string() const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::path::generic_display_string() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::vprint(FILE*, wstring_view, wformat_args)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/xchar.h:295:5:   required from here
  295 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::vprint(FILE*, wstring_view, wformat_args)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::vprint(FILE*, wstring_view, wformat_args)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {fmt::v11::basic_string_view<char>&, const char (&)[3]}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:61:19:   required from here
   61 |     fmt::format_to(it, FMT_STRING("{}{}"), message, SEP);
      |     ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {const char (&)[7], int&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:62:17:   required from here
   62 |   fmt::format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code);
      |   ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::detail::format_error_code(buffer<char>&, int, fmt::v11::string_view)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::detail::fwrite_all(const void*, size_t, FILE*)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:79:5:   required from here
   79 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::detail::fwrite_all(const void*, size_t, FILE*)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::detail::fwrite_all(const void*, size_t, FILE*)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {unsigned int&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1396:29:   required from here
 1396 |         out = fmt::format_to(out, FMT_STRING("{:x}"), value);
      |               ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {unsigned int&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1400:27:   required from here
 1400 |       out = fmt::format_to(out, FMT_STRING("{:08x}"), value);
      |             ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {int}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/format-inl.h:1403:27:   required from here
 1403 |       out = fmt::format_to(out, FMT_STRING("p{}"),
      |             ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
 1404 |                            n.exp_ * detail::bigint::bigit_bits);
      |                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::formatter<fmt::v11::detail::bigint>::format(const fmt::v11::detail::bigint&, fmt::v11::format_context&) const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::buffered_file::buffered_file(fmt::v11::cstring_view, fmt::v11::cstring_view)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {const char*}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:176:5:   required from here
  176 |     FMT_THROW(system_error(errno, FMT_STRING("cannot open file {}"),
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  177 |                            filename.c_str()));
      |                            ~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::buffered_file::buffered_file(fmt::v11::cstring_view, fmt::v11::cstring_view)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::buffered_file::buffered_file(fmt::v11::cstring_view, fmt::v11::cstring_view)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::buffered_file::close()::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:185:5:   required from here
  185 |     FMT_THROW(system_error(errno, FMT_STRING("cannot close file")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::buffered_file::close()::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::buffered_file::close()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::buffered_file::descriptor() const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:201:5:   required from here
  201 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get file descriptor")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::buffered_file::descriptor() const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::buffered_file::descriptor() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::file(fmt::v11::cstring_view, int)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {const char*}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:221:5:   required from here
  222 |         system_error(errno, FMT_STRING("cannot open file {}"), path.c_str()));
      |         ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::file(fmt::v11::cstring_view, int)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::file(fmt::v11::cstring_view, int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::close()::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:240:5:   required from here
  240 |     FMT_THROW(system_error(errno, FMT_STRING("cannot close file")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::close()::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::close()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::size() const::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:262:5:   required from here
  262 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get file attributes")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::size() const::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::size() const::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::read(void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:273:5:   required from here
  273 |     FMT_THROW(system_error(errno, FMT_STRING("cannot read from file")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::read(void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::read(void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::write(const void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:281:5:   required from here
  281 |     FMT_THROW(system_error(errno, FMT_STRING("cannot write to file")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::write(const void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::write(const void*, std::size_t)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::dup(int)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {int&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:290:5:   required from here
  290 |     FMT_THROW(system_error(
      |               ~~~~~~~~~~~~^
  291 |         errno, FMT_STRING("cannot duplicate file descriptor {}"), fd));
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::dup(int)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::dup(int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::dup2(int)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {int&, int&}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:299:5:   required from here
  299 |     FMT_THROW(system_error(
      |               ~~~~~~~~~~~~^
  300 |         errno, FMT_STRING("cannot duplicate file descriptor {} to {}"), fd_,
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  301 |         fd));
      |         ~~~                
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::dup2(int)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::dup2(int)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::file::fdopen(const char*)::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:319:5:   required from here
  319 |     FMT_THROW(system_error(
      |               ~~~~~~~~~~~~^
  320 |         errno, FMT_STRING("cannot associate stream with file descriptor")));
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::file::fdopen(const char*)::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::file::fdopen(const char*)::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::pipe::pipe()::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:351:5:   required from here
  351 |     FMT_THROW(system_error(errno, FMT_STRING("cannot create pipe")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::pipe::pipe()::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::pipe::pipe()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h: In instantiation of ‘fmt::v11::fstring<T>::fstring(const S&) [with S = fmt::v11::getpagesize()::<lambda()>::FMT_COMPILE_STRING; typename std::enable_if<(std::is_base_of<fmt::v11::detail::compile_string, S>::value && std::is_same<typename S::char_type, char>::value), int>::type <anonymous> = 0; T = {}]’:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/os.cc:371:5:   required from here
  371 |     FMT_THROW(system_error(errno, FMT_STRING("cannot get memory page size")));
      |               ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29:   in ‘constexpr’ expansion of ‘fmt::v11::getpagesize()::<lambda()>::FMT_COMPILE_STRING{fmt::v11::detail::compile_string()}.fmt::v11::getpagesize()::<lambda()>::FMT_COMPILE_STRING::operator fmt::v11::basic_string_view<char>()’
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/include/fmt/base.h:2706:29: error: ‘constexpr’ call flows off the end of the function
 2706 |     FMT_CONSTEXPR auto sv = string_view(S());
      |                             ^~~~~~~~~~~~~~~~
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc: At global scope:
/home/luizhenrique/Desktop/Projetos/modules-test/fmt/src/fmt.cc:90:8: warning: not writing module ‘fmt’ due to errors
   90 | export module fmt;
      |        ^
make[2]: *** [fmt/CMakeFiles/fmt.dir/build.make:79: fmt/CMakeFiles/fmt.dir/src/fmt.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:140: fmt/CMakeFiles/fmt.dir/all] Error 2
make: *** [Makefile:136: all] Error 2

@vitaut
Copy link
Contributor

vitaut commented Nov 10, 2024

Fixed in a6c45df, thanks for reporting.

@vitaut vitaut closed this as completed Nov 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants