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
DART doesn't define deprecated mark for clang.
The text was updated successfully, but these errors were encountered:
C++14 will introduce an ISO [[deprecated]] attribute tag, although I have no idea when that will be supported by GCC, Clang, and VS.
[[deprecated]]
Sorry, something went wrong.
Until then, it like clang implements the same extension as GCC:
#define DEPRECATED(version) __attribute__ ((deprecated))
[[deprecated]] would be a simple and portable solution when all the three compilers support it.
Meanwhile, let's use the same extension as GCC. I'll create a pull request for this.
Successfully merging a pull request may close this issue.
DART doesn't define deprecated mark for clang.
The text was updated successfully, but these errors were encountered: