- ベストアンサー
static_assertの警告版
static_assertの警告版みたいなものはないでしょうか? template<typename T> struct{ hoge(){ static_assert_warning(0, "warning: hoge is called"); } }; VC++2010です。
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
__declspec(deprecate("メッセージ文字列")) で代用できませんか?
static_assertの警告版みたいなものはないでしょうか? template<typename T> struct{ hoge(){ static_assert_warning(0, "warning: hoge is called"); } }; VC++2010です。
__declspec(deprecate("メッセージ文字列")) で代用できませんか?
補足
これでおよそ代用できそうです。 ありがとうございました。