c++ - What is equals of Visual Studio .Net [DebuggerStepThrough] in QT? -
i want ignore lines while debugging in qt.
know can in visual studio .net [debuggerstepthrough]
http://www.debuggerstepthrough.com/2013/01/some-good-to-know-c-attributes.html
wanna know equivalent of code in qt, c++.
is there code in qt purpose, if not, how can in qt creator?
on windows visual studio compiler use following:
int main(int argc, char** argv) { //code run @ build foo(); //code run in debug build #ifdef _debug bar(); #endif //code run in release build #ifndef _debug baz(); #endif }
i hope helps.
Comments
Post a Comment