Is there any new, cool feature in C++11 that allows us to detect at compile time whether an API now marked as deprecated is actually called by someone?
From what I've read about the new static_assert
feature it doesn't seem flexible enough to be used in that kind of analysis.
But is there anything else we could use?
Optionally, is there anything in boost allowing that kind of compile-time checking?