summaryrefslogtreecommitdiffstats
path: root/googlemock
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@google.com>2023-02-01 22:31:44 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-02-01 22:32:28 (GMT)
commitebedaa18c7cafa15f06ab3d814440e510fad9559 (patch)
tree390376e8a3f6b821990cabd7c3e010f7cff0461f /googlemock
parent394a8a568cad47025d5f382d4519371df71b12e1 (diff)
downloadgoogletest-ebedaa18c7cafa15f06ab3d814440e510fad9559.zip
googletest-ebedaa18c7cafa15f06ab3d814440e510fad9559.tar.gz
googletest-ebedaa18c7cafa15f06ab3d814440e510fad9559.tar.bz2
Fix include order
PiperOrigin-RevId: 506424617 Change-Id: If7f0beb92022589523db204a6b5cbe9249cebf62
Diffstat (limited to 'googlemock')
-rw-r--r--googlemock/test/gmock-matchers-arithmetic_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/test/gmock-matchers-arithmetic_test.cc b/googlemock/test/gmock-matchers-arithmetic_test.cc
index fd81a9e..2c5f4d0 100644
--- a/googlemock/test/gmock-matchers-arithmetic_test.cc
+++ b/googlemock/test/gmock-matchers-arithmetic_test.cc
@@ -31,10 +31,10 @@
//
// This file tests some commonly used argument matchers.
-#include "test/gmock-matchers_test.h"
-
#include <limits>
+#include "test/gmock-matchers_test.h"
+
// Silence warning C4244: 'initializing': conversion from 'int' to 'short',
// possible loss of data and C4100, unreferenced local parameter
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4244 4100)