diff options
author | Adrian Moran <amoran@ikerlan.es> | 2018-07-13 06:53:03 (GMT) |
---|---|---|
committer | Adrian Moran <amoran@ikerlan.es> | 2018-07-13 06:53:03 (GMT) |
commit | cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8 (patch) | |
tree | f3a2b3045d9d8305b6017150706ad132ae3808f6 /googlemock | |
parent | 0acdf796420e4562ef7399b8610d23eda3256a5a (diff) | |
download | googletest-cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8.zip googletest-cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8.tar.gz googletest-cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8.tar.bz2 |
Put ifdef guard after the includes.
Signed-off-by: Adrian Moran <amoran@ikerlan.es>
Diffstat (limited to 'googlemock')
-rw-r--r-- | googlemock/test/gmock_ex_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/test/gmock_ex_test.cc b/googlemock/test/gmock_ex_test.cc index 5a299da..99268b3 100644 --- a/googlemock/test/gmock_ex_test.cc +++ b/googlemock/test/gmock_ex_test.cc @@ -31,10 +31,10 @@ // Tests Google Mock's functionality that depends on exceptions. -#if GTEST_HAS_EXCEPTIONS #include "gmock/gmock.h" #include "gtest/gtest.h" +#if GTEST_HAS_EXCEPTIONS namespace { using testing::HasSubstr; |