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

fix new Clang 20 Waring -Wdeprecated-literal-operator #160

Conversation

SvenJo
Copy link
Contributor

@SvenJo SvenJo commented Mar 9, 2025

(remove space between "" and _)

new Clang 20 compiler warning: -Wdeprecated-literal-operator

Generate warning (and with -Werror errors) like:

/home/sven/src/json/include/tao/json/binary.hpp:94:57: error: identifier '_binary' preceded by whitespace in a literal operator declaration is deprecated [-Werror,-Wdeprecated-literal-operator]
   94 |       [[nodiscard]] std::vector< std::byte > operator"" _binary()
      |                                              ~~~~~~~~~~~^~~~~~~
      |                                              operator""_binary

Copy link

codecov bot commented Mar 9, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 73.99%. Comparing base (3d1d4fc) to head (908869b).
Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #160      +/-   ##
==========================================
- Coverage   74.01%   73.99%   -0.03%     
==========================================
  Files         257      257              
  Lines        9191     9191              
  Branches      804      808       +4     
==========================================
- Hits         6803     6801       -2     
  Misses       1785     1785              
- Partials      603      605       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@d-frey d-frey merged commit 11a31e1 into taocpp:main Mar 11, 2025
44 of 57 checks passed
@SvenJo
Copy link
Contributor Author

SvenJo commented Mar 12, 2025

Found the change in the Clang Release Notes: https://releases.llvm.org/20.1.0/tools/clang/docs/ReleaseNotes.html

The warning -Wdeprecated-literal-operator is now on by default, as this is something that WG21 has shown interest in removing from the language. The result is that anyone who is compiling with -Werror should see this diagnostic. To fix this diagnostic, simply removing the space character from between the operator"" and the user defined literal name will make the source no longer deprecated. This is consistent with CWG2521 https://cplusplus.github.io/CWG/issues/2521.html_.

// Now diagnoses by default.
unsigned operator"" _udl_name(unsigned long long);
// Fixed version:
unsigned operator""_udl_name(unsigned long long);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants