diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2011-02-24 07:29:13 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2011-02-24 07:29:13 +0000 |
commit | 658ac0b71a350cc833ee4520536b6c4964c7b944 (patch) | |
tree | aed1a53191aa46cc85100533862e9590e974f0c5 /include/gmock/internal/gmock-internal-utils.h | |
parent | ed6c9277bb12f2808bb812ae8f91492dac9517b4 (diff) | |
download | googletest-658ac0b71a350cc833ee4520536b6c4964c7b944.tar.gz googletest-658ac0b71a350cc833ee4520536b6c4964c7b944.tar.bz2 googletest-658ac0b71a350cc833ee4520536b6c4964c7b944.zip |
Indents preprocessor directives.
Diffstat (limited to 'include/gmock/internal/gmock-internal-utils.h')
-rw-r--r-- | include/gmock/internal/gmock-internal-utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/gmock/internal/gmock-internal-utils.h b/include/gmock/internal/gmock-internal-utils.h index 7aaf6de5..48fadba2 100644 --- a/include/gmock/internal/gmock-internal-utils.h +++ b/include/gmock/internal/gmock-internal-utils.h @@ -101,7 +101,7 @@ struct LinkedPtrLessThan { (defined(_MSC_VER) && !defined(_NATIVE_WCHAR_T_DEFINED)) // wchar_t is a typedef. #else -#define GMOCK_WCHAR_T_IS_NATIVE_ 1 +# define GMOCK_WCHAR_T_IS_NATIVE_ 1 #endif // signed wchar_t and unsigned wchar_t are NOT in the C++ standard. @@ -114,7 +114,8 @@ struct LinkedPtrLessThan { // To gcc, // wchar_t == signed wchar_t != unsigned wchar_t == unsigned int #ifdef __GNUC__ -#define GMOCK_HAS_SIGNED_WCHAR_T_ 1 // signed/unsigned wchar_t are valid types. +// signed/unsigned wchar_t are valid types. +# define GMOCK_HAS_SIGNED_WCHAR_T_ 1 #endif // In what follows, we use the term "kind" to indicate whether a type |