hana icon indicating copy to clipboard operation
hana copied to clipboard

warning: identifier '_c' preceded by whitespace in a literal operator declaration is deprecated

Open RFoe opened this issue 2 months ago • 0 comments

boost-hana 1.88 clang 20.1.0 c++26

// boost/bool.h: 198
    namespace literals {
        template <char ...c>
        constexpr auto operator"" _c() {
            return hana::llong<ic_detail::parse<sizeof...(c)>({c...})>{};
        }
    }
/boost/hana/bool.hpp:198:35: warning: identifier '_c' preceded by whitespace in a literal operator declaration is deprecated

RFoe avatar Oct 11 '25 01:10 RFoe