Reputation: 5334
In order to enforce C89 code conformance, I would like Visual Studio 2005 not to accept C++-style comments (// my comment
), but only C-style comments (/* my comment */
).
Is there any available configuration in Visual Studio 2005 for that purpose? Thanks.
Upvotes: 1
Views: 236
Reputation: 5334
Well, sorry for that self-answered question. Everything is there.
Just in case the link becomes unavailable: you need to enable strict mode (/Za
), and add either a pragma or a compiler option in order to activate warnings or errors on these comments:
#pragma warning(1:4001)
or /w14001
#pragma warning(error:4001)
or /we4001
All the best
Upvotes: 1