Deprecated: The use of # for line-based comments is
deprecated. From the first occurrence of # onward, the rest
of the line is ignored. This happens after includes are resolved
starting with #include.
Replacement: Use a pair of forward slashes, //, for line
comments.
13.11
#
CommentsDeprecated: The use of
#
for line-based comments is deprecated. From the first occurrence of#
onward, the rest of the line is ignored. This happens after includes are resolved starting with#include
.Replacement: Use a pair of forward slashes,
//
, for line comments.