diff options
author | Gennadiy Civil <misterg@google.com> | 2018-01-26 11:57:58 -0500 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-01-26 11:57:58 -0500 |
commit | fbb48a7708fc791ef25096b383791966bbf369f0 (patch) | |
tree | 06f49b8bef466973da1f715f658d9470af7aa263 /googlemock/include/gmock/gmock-spec-builders.h | |
parent | b3a2048beb0f8d6cbb2d5c95e7f639780eff5805 (diff) | |
download | googletest-fbb48a7708fc791ef25096b383791966bbf369f0.tar.gz googletest-fbb48a7708fc791ef25096b383791966bbf369f0.tar.bz2 googletest-fbb48a7708fc791ef25096b383791966bbf369f0.zip |
Code merges
Diffstat (limited to 'googlemock/include/gmock/gmock-spec-builders.h')
-rw-r--r-- | googlemock/include/gmock/gmock-spec-builders.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/googlemock/include/gmock/gmock-spec-builders.h b/googlemock/include/gmock/gmock-spec-builders.h index a8347bd8..c1b63014 100644 --- a/googlemock/include/gmock/gmock-spec-builders.h +++ b/googlemock/include/gmock/gmock-spec-builders.h @@ -65,11 +65,6 @@ #include <sstream> #include <string> #include <vector> - -#if GTEST_HAS_EXCEPTIONS -# include <stdexcept> // NOLINT -#endif - #include "gmock/gmock-actions.h" #include "gmock/gmock-cardinalities.h" #include "gmock/gmock-matchers.h" @@ -77,6 +72,10 @@ #include "gmock/internal/gmock-port.h" #include "gtest/gtest.h" +#if GTEST_HAS_EXCEPTIONS +# include <stdexcept> // NOLINT +#endif + namespace testing { // An abstract handle of an expectation. |