#5 Members - Reputation: 379
Posted 15 July 2012 - 01:15 AM
First #pragma once and after that the pre-processor guards with #ifndef/#define/#endif. This way the probably faster solution with the pragma tries first and if it fails the old-style catches the double inclusion.
As I had to decide what way is the best it has been reported that #pragma once may fail if the same file has been opened via different pathes, with a crosslink somewhere. This should now be fixed for most of the compilers. But who knows?
#8 Members - Reputation: 358
Posted 15 July 2012 - 04:08 AM
But "'#pragma" is easier... Only one line without additional identifiers like "COLOR_H". It is more comfortable so I use it.
If you like them, use it...
Yap, this is really truepragma once is supported by all C++ compilers these days.
True, tooYou do not have modern compilers in all environments e.g. embedded systems.
In my opinion: Use it when you like it. The compiler will tell his opinion.
I have a blog: omercan1993.wordpress.com look there for more content
And I also do some art: omercan1993.deviantart.com
And whats about the Pear3DEngine? Never heard of it? Go and look!
Yeah, and currently I do this: SimuWorld
PS: Please look at this poll on my blog about scripting languages: A opinion poll about scripting language
#9 Members - Reputation: 5796
Posted 15 July 2012 - 08:37 AM
Those compilers don't usually support the whole language either, and that doesn't mean that the features of the language they don't support should be avoided. I think using `#pragma once' should be fine these days. If you are programming for an embedded system, you need to be aware of several things you can't do, and this would be one of them.You do not have modern compilers in all environments e.g. embedded systems.
Also, I got the impression that people tend to use gcc on pretty much every platform these days. But perhaps I am mistaken. Do you have an example of an embedded system for which people don't use gcc?
#10 Members - Reputation: 1408
Posted 15 July 2012 - 09:38 AM
Also, I got the impression that people tend to use gcc on pretty much every platform these days. But perhaps I am mistaken. Do you have an example of an embedded system for which people don't use gcc?
I am working in the automotive business, and they have a lot of embedded systems these days. Not that I have seen more than a couple of them, but none had GCC.
#11 Members - Reputation: 5796
Posted 15 July 2012 - 01:35 PM
I am working in the automotive business, and they have a lot of embedded systems these days. Not that I have seen more than a couple of them, but none had GCC.
Do the compilers for those platforms have decent support of all C++ features? Memory allocation? The functions in <cmath>? Templates? Exceptions? If the answer to all of those is "yes", then you have a point about warning about lack of support for `#pragma once'. If not, having to use header guards is one more oddity about this environment that you have to be aware of, and the OP should feel free to use `#pragma once' in other environments.
Edited by alvaro, 15 July 2012 - 01:35 PM.
#12 Members - Reputation: 1408
Posted 15 July 2012 - 04:20 PM
Not at all.
I am working in the automotive business, and they have a lot of embedded systems these days. Not that I have seen more than a couple of them, but none had GCC.
Do the compilers for those platforms have decent support of all C++ features?
I agree. Notice that OP didn't specify language, and I just wanted to point out that GCC probably isn't used ubiquitously in the embedded business (and neither is C++). But I suppose that, considering the sub set of C++, GCC will be more common.If not, having to use header guards is one more oddity about this environment that you have to be aware of, and the OP should feel free to use `#pragma once' in other environments.






