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 /test/gmock_link_test.h | |
parent | ed6c9277bb12f2808bb812ae8f91492dac9517b4 (diff) | |
download | googletest-658ac0b71a350cc833ee4520536b6c4964c7b944.tar.gz googletest-658ac0b71a350cc833ee4520536b6c4964c7b944.tar.bz2 googletest-658ac0b71a350cc833ee4520536b6c4964c7b944.zip |
Indents preprocessor directives.
Diffstat (limited to 'test/gmock_link_test.h')
-rw-r--r-- | test/gmock_link_test.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/gmock_link_test.h b/test/gmock_link_test.h index 499cc186..ab5af4b4 100644 --- a/test/gmock_link_test.h +++ b/test/gmock_link_test.h @@ -117,7 +117,7 @@ #include "gmock/gmock.h" #if !GTEST_OS_WINDOWS_MOBILE -#include <errno.h> +# include <errno.h> #endif #include "gmock/internal/gmock-port.h" @@ -419,8 +419,8 @@ TEST(LinkTest, TestThrow) { // is expanded and macro expansion cannot contain #pragma. Therefore // we suppress them here. #ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable:4100) +# pragma warning(push) +# pragma warning(disable:4100) #endif // Tests the linkage of actions created using ACTION macro. @@ -455,7 +455,7 @@ ACTION_P2(ReturnEqualsEitherOf, first, second) { } #ifdef _MSC_VER -#pragma warning(pop) +# pragma warning(pop) #endif TEST(LinkTest, TestActionP2Macro) { |