summaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock-matchers-containers_test.cc
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@google.com>2023-04-20 21:28:27 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-04-20 21:29:09 (GMT)
commita5308bb992c049b16b763f8910da70c208c5cede (patch)
tree788dd92b47d57d18fd0f0a445917e4448eff38a3 /googlemock/test/gmock-matchers-containers_test.cc
parent9c1efac2a1b6d836ef35e1dfb87b7addca361afe (diff)
downloadgoogletest-a5308bb992c049b16b763f8910da70c208c5cede.zip
googletest-a5308bb992c049b16b763f8910da70c208c5cede.tar.gz
googletest-a5308bb992c049b16b763f8910da70c208c5cede.tar.bz2
Add missing std includes
PiperOrigin-RevId: 525850646 Change-Id: I64387f5b933beb79cd05636dca81b7a75213383e
Diffstat (limited to 'googlemock/test/gmock-matchers-containers_test.cc')
-rw-r--r--googlemock/test/gmock-matchers-containers_test.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/googlemock/test/gmock-matchers-containers_test.cc b/googlemock/test/gmock-matchers-containers_test.cc
index c8d8ea3..654a011 100644
--- a/googlemock/test/gmock-matchers-containers_test.cc
+++ b/googlemock/test/gmock-matchers-containers_test.cc
@@ -31,6 +31,18 @@
//
// This file tests some commonly used argument matchers.
+#include <algorithm>
+#include <array>
+#include <deque>
+#include <forward_list>
+#include <iterator>
+#include <list>
+#include <memory>
+#include <ostream>
+#include <string>
+#include <tuple>
+#include <vector>
+
#include "gtest/gtest.h"
// Silence warning C4244: 'initializing': conversion from 'int' to 'short',