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
noexcept
The parser seems to have trouble dealing with a trailing noexcept specifier on function declarations.
Skipping function ndn::Block::reset() noexcept. Error reported from parser was: Expected {{{'bool' ^ 'short' ^ 'int' ^ 'long' ^ 'signed' ^ 'unsigned' ^ 'char' ^ 'float' ^ 'double'}}... ^ Combine:({W:(0-:A-Z_a-z) [nested <> expression [W:(0-:A-Z_a-z)]]})}, found ')' (at char 1), (line:1, col:2)
And here combined with const.
const
Skipping function ndn::Transport::isConnected() const noexcept. Error reported from parser was: Expected {{{'bool' ^ 'short' ^ 'int' ^ 'long' ^ 'signed' ^ 'unsigned' ^ 'char' ^ 'float' ^ 'double'}}... ^ Combine:({W:(0-:A-Z_a-z) [nested <> expression [W:(0-:A-Z_a-z)]]})}, found ')' (at char 1), (line:1, col:2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The parser seems to have trouble dealing with a trailing
noexcept
specifier on function declarations.And here combined with
const
.The text was updated successfully, but these errors were encountered: