Hello, I am trying to execute cppcheck for the first time and I hit an error, "Analysis failed. If the code is valid then please report this failure. [internalError]"
The line of code in question was std::bitset<N> from the following:
std::bitset<N>
template <typename Enum, std::size_t N> typename std::bitset<N>::reference TFlags<Enum, N>::operator[](Enum flag) noexcept { return m_bits[(std::size_t)flag]; }
I have attached the file in question.
Log in to post a comment.
Hello, I am trying to execute cppcheck for the first time and I hit an error, "Analysis failed. If the code is valid then please report this failure. [internalError]"
The line of code in question was
std::bitset<N>
from the following:I have attached the file in question.