Indents preprocessor directives.

This commit is contained in:
zhanyong.wan
2011-02-24 07:29:13 +00:00
parent ed6c9277bb
commit 658ac0b71a
16 changed files with 62 additions and 55 deletions

View File

@@ -1394,12 +1394,12 @@ class TrulyMatcher {
MatchResultListener* /* listener */) const {
#if GTEST_OS_WINDOWS
// MSVC warns about converting a value into bool (warning 4800).
#pragma warning(push) // Saves the current warning state.
#pragma warning(disable:4800) // Temporarily disables warning 4800.
# pragma warning(push) // Saves the current warning state.
# pragma warning(disable:4800) // Temporarily disables warning 4800.
#endif // GTEST_OS_WINDOWS
return predicate_(x);
#if GTEST_OS_WINDOWS
#pragma warning(pop) // Restores the warning state.
# pragma warning(pop) // Restores the warning state.
#endif // GTEST_OS_WINDOWS
}