diff options
author | Sean McBride <sean@rogue-research.com> | 2014-12-11 18:10:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-11 18:53:06 (GMT) |
commit | 111be1801fcf50412e702be2d5966dbf52926b94 (patch) | |
tree | 8bb76dc144ec0b5190f9992fc69af59943eaa699 /Utilities/cm_bzlib.h | |
parent | 3171fe0afa7169c1e814a5c0e08b115002f0d3c3 (diff) | |
download | CMake-111be1801fcf50412e702be2d5966dbf52926b94.zip CMake-111be1801fcf50412e702be2d5966dbf52926b94.tar.gz CMake-111be1801fcf50412e702be2d5966dbf52926b94.tar.bz2 |
Rename header guards to not start with double underscore
Use regex to find/replace:
__(cm.*_h)
\1
Then fix QCMake.h by hand.
Diffstat (limited to 'Utilities/cm_bzlib.h')
-rw-r--r-- | Utilities/cm_bzlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/cm_bzlib.h b/Utilities/cm_bzlib.h index d1fffa1..5678025 100644 --- a/Utilities/cm_bzlib.h +++ b/Utilities/cm_bzlib.h @@ -9,8 +9,8 @@ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more information. ============================================================================*/ -#ifndef __cm_bzlib_h -#define __cm_bzlib_h +#ifndef cm_bzlib_h +#define cm_bzlib_h /* Use the bzip2 library configured for CMake. */ #include "cmThirdParty.h" |