diff options
author | Adrian Moran <amoran@ikerlan.es> | 2018-07-13 08:53:03 +0200 |
---|---|---|
committer | Adrian Moran <amoran@ikerlan.es> | 2018-07-13 08:53:03 +0200 |
commit | cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8 (patch) | |
tree | f3a2b3045d9d8305b6017150706ad132ae3808f6 /googlemock/test/gmock_ex_test.cc | |
parent | 0acdf796420e4562ef7399b8610d23eda3256a5a (diff) | |
download | googletest-cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8.tar.gz googletest-cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8.tar.bz2 googletest-cbd07191f4b7a3498fd0d1d7c58c4c39cccb8fb8.zip |
Put ifdef guard after the includes.
Signed-off-by: Adrian Moran <amoran@ikerlan.es>
Diffstat (limited to 'googlemock/test/gmock_ex_test.cc')
-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 5a299dae..99268b31 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; |