The question say it all. Have #pragma once been standardized for C++0x? I don't know any compiler that don't provide and implementation of it, with almost always the same semantic and name.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
All This hasn't changed between C++03 and the latest C++0x draft (n3225.pdf). Include guards are the portable alternative. |
|||||||||||||
|
|
Sun C++ compiler (Solaris) does not implement it. And no, it's not in C++0x drafts. |
|||
|
|
|
It's also trivial to implement using #ifdef. What's the guiding principal for the new version? Implement everything you might ever want and the kitchen sink or just give you the minimum tools to do so yourself? |
|||||||||
|
#pragma once– Motti Dec 30 '10 at 19:31