tzlaine / parser

A C++ parser combinator library.
Boost Software License 1.0
69 stars 12 forks source link

whitespace changes, just test the CI for success (please ignore) #174

Open d5ch4k opened 1 month ago

d5ch4k commented 1 month ago

I need to be sure, that my changes broke the build (please ignore) I hope theses subtle changes will trigger the github actions ci

d5ch4k commented 1 month ago

if you add some verbosity to the fedora.yml file by adding -DCMAKE_VERBOSE_MAKEFILE=ON i.e.

          cmake -B build -G Ninja \
           -DCMAKE_VERBOSE_MAKEFILE=ON \
           -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
           -DCMAKE_C_COMPILER="${CC}" \
           -DCMAKE_CXX_COMPILER="${CXX}" \
           -DCXX_STD=${{ matrix.cxx_std }}

then ninja will be called with -v and you can see in include/boost/parser/detail/text/transcode_view.hpp a lot of error: friend function template with constraints that depend on outer template parameters must be a definition now with the new gcc-14.0.1

The error in the Windows build [build (23, windows-2022)] has an issue with the pipe operator for a char const * type string

        char const * str_ = "XYZ";
        auto str = str_ | bp::as_utf8;
d5ch4k commented 1 month ago

I just learned that issue #169 is related