Convert to #pragma once#1898
Conversation
|
@white238 |
kennyweiss
left a comment
There was a problem hiding this comment.
Thanks @white238
This should improve consistency (as much fun as it is coming up w/ slightly inconsistent header guards for each file).
There are a few cases where the guard was a a few lines lower than it should have been. These predate your PR, but this would be a good time to fix them.
|
|
||
| #ifndef AXOM_MATRIX_HPP_ | ||
| #define AXOM_MATRIX_HPP_ | ||
| #pragma once |
There was a problem hiding this comment.
This predates the current PR, but the #pragma once should be above the includes in this file.
|
It is a very common feature at this point, more concise, and possibly speeds up builds. |
Converts all headers to
#pragma once. There were a couple places that were missing guards. I also didn't touchsrc/thirdpartyandsrc/cmake.