diff options
author | Billy Donahue <billydonahue@google.com> | 2015-09-08 02:46:25 -0400 |
---|---|---|
committer | Billy Donahue <billydonahue@google.com> | 2015-09-08 02:46:25 -0400 |
commit | b78f858d0c12cc71d41607b261e3cfd6c6bfa185 (patch) | |
tree | 9d000e497b19a671ef08475da2e1d01063687845 | |
parent | f19b060075e89ac7ccd1744b30d41b755b92a10a (diff) | |
download | googletest-b78f858d0c12cc71d41607b261e3cfd6c6bfa185.tar.gz googletest-b78f858d0c12cc71d41607b261e3cfd6c6bfa185.tar.bz2 googletest-b78f858d0c12cc71d41607b261e3cfd6c6bfa185.zip |
Include <memory> to use std::unique_ptr.
-rw-r--r-- | googlemock/test/gmock-internal-utils_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/googlemock/test/gmock-internal-utils_test.cc b/googlemock/test/gmock-internal-utils_test.cc index 4f00f0d1..9d5ec609 100644 --- a/googlemock/test/gmock-internal-utils_test.cc +++ b/googlemock/test/gmock-internal-utils_test.cc @@ -36,6 +36,7 @@ #include "gmock/internal/gmock-internal-utils.h" #include <stdlib.h> #include <map> +#include <memory> #include <string> #include <sstream> #include <vector> |