Is there a way to create user-defined attributes in C++11 or later?
For example,
[[noreturn]] void exit();
is a compiler-defined C++11 attribute.
I'd like to define something like:
[[comingsoon]] int function(int);
Is there a mechanism for this?
Edit: I should mention I'm using Clang.