Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ビルドがデバッグまたはリリースとして実行されている場合、C++ 2010 をチェックインしたいと思います。それを確認する簡単な方法はありますか?
ありがとうございました。
VisualStudio は と を として生成_DEBUGしNDEBUGますdefine。コンパイル時に確認できます。
_DEBUG
NDEBUG
define
#ifdef _DEBUG // THE CODE IS COMPILING IN DEBUG MODE. #endif