How can I use #pragma message() so that the message points to the file(lineno)?
Here is one that allows you to click on the output pane: (There are also some other nice tips there) http://www.highprogrammer.com/alan/windev/visualstudio.html // Statements like: // #pragma message(Reminder “Fix this problem!”) // Which will cause messages like: // C:\Source\Project\main.cpp(47): Reminder: Fix this problem! // to show up during compiles. Note that you can NOT use the … Read more