From ebedaa18c7cafa15f06ab3d814440e510fad9559 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 1 Feb 2023 14:31:44 -0800 Subject: [PATCH] Fix include order PiperOrigin-RevId: 506424617 Change-Id: If7f0beb92022589523db204a6b5cbe9249cebf62 --- googlemock/test/gmock-matchers-arithmetic_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/googlemock/test/gmock-matchers-arithmetic_test.cc b/googlemock/test/gmock-matchers-arithmetic_test.cc index fd81a9e8..2c5f4d0b 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 +#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)