Is it possible to use the multi-line #warning directive?

I read here : "Each preprocessor directive begins with a hash character (#), and all preprocessor directives should appear on one line. A newline character, not a semicolon, indicates the end of the directive.

But I was wondering, maybe there is a trick for creating multi-line #warning, because at the early stage of some code I write a warning that covers more than the width of the screen.

+5
source share
1 answer

From http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx :

A preprocessor directive must be the only instruction on a line.

So that is not possible.

+2
source

All Articles