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

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -