diff options
author | Kitware Robot <kwrobot@kitware.com> | 2018-06-01 13:53:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-06-01 13:53:42 (GMT) |
commit | d7204e649ed4ebb19bb341b4e49eb51514364922 (patch) | |
tree | d9ac3ded5ae6899be7188795011743fe3e6da0a6 /Source/cmFortranParser.h | |
parent | 12fed3edb107c949671043196fa94c542b45452a (diff) | |
download | CMake-d7204e649ed4ebb19bb341b4e49eb51514364922.zip CMake-d7204e649ed4ebb19bb341b4e49eb51514364922.tar.gz CMake-d7204e649ed4ebb19bb341b4e49eb51514364922.tar.bz2 |
Revise C++ coding style using clang-format-6.0
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`. Use `clang-format` version 6.0.
* If you reached this commit for a line in `git blame`, re-run the blame
operation starting at the parent of this commit to see older history
for the content.
* See the parent commit for instructions to rebase a change across this
style transition commit.
Diffstat (limited to 'Source/cmFortranParser.h')
-rw-r--r-- | Source/cmFortranParser.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Source/cmFortranParser.h b/Source/cmFortranParser.h index efcd100..132b3e6 100644 --- a/Source/cmFortranParser.h +++ b/Source/cmFortranParser.h @@ -4,11 +4,11 @@ #define cmFortranParser_h #if !defined(cmFortranLexer_cxx) && !defined(cmFortranParser_cxx) -#include "cmConfigure.h" // IWYU pragma: keep +# include "cmConfigure.h" // IWYU pragma: keep -#include <set> -#include <string> -#include <vector> +# include <set> +# include <string> +# include <vector> #endif #include <stddef.h> /* size_t */ @@ -73,20 +73,20 @@ struct cmFortran_yystype #define YYSTYPE cmFortran_yystype #define YYSTYPE_IS_DECLARED 1 #if !defined(cmFortranLexer_cxx) -#define YY_NO_UNISTD_H -#include "cmFortranLexer.h" +# define YY_NO_UNISTD_H +# include "cmFortranLexer.h" #endif #if !defined(cmFortranLexer_cxx) -#if !defined(cmFortranParser_cxx) -#undef YY_EXTRA_TYPE -#undef YY_DECL -#undef YYSTYPE -#undef YYSTYPE_IS_DECLARED -#endif +# if !defined(cmFortranParser_cxx) +# undef YY_EXTRA_TYPE +# undef YY_DECL +# undef YYSTYPE +# undef YYSTYPE_IS_DECLARED +# endif #endif #if !defined(cmFortranLexer_cxx) && !defined(cmFortranParser_cxx) -#include <stack> +# include <stack> // Information about a single source file. class cmFortranSourceInfo |