We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With the latest version of clang-cl, algorithm.cpp get failed with clang-cl on Windows for "declaration does not declare anything". Related code:
range/test/algorithm.cpp
Lines 32 to 35 in 72e2a44
namespace boost { template <class T> class counting_iterator {}; } template ::boost::counting_iterator<int>;
Error message:
ksh-3.2$ clang-cl -c test.cpp test.cpp(6,10): error: declaration does not declare anything template ::boost::counting_iterator<int>; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated.
The code is considered as not accepted(llvm/llvm-project@1cbdf93).
The text was updated successfully, but these errors were encountered:
Fix issue boostorg#110 by removing template declaration
f0a6c7e
No branches or pull requests
With the latest version of clang-cl, algorithm.cpp get failed with clang-cl on Windows for "declaration does not declare anything".
Related code:
range/test/algorithm.cpp
Lines 32 to 35 in 72e2a44
A small reproducer(test.cpp):
Error message:
The code is considered as not accepted(llvm/llvm-project@1cbdf93).
The text was updated successfully, but these errors were encountered: