From: Gabe Black Date: Thu, 29 Nov 2018 01:34:33 +0000 (-0800) Subject: base: Fix include order in the inifile unit test. X-Git-Tag: v19.0.0.0~1357 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a2e13f973c2ecf1154bcfc83d8c59210eef56c7;p=gem5.git base: Fix include order in the inifile unit test. Even though gtest.h is a C++ header, it looks like a C header which makes the style check hook upset. Lets move it up so the hook doesn't complain when the file is changed. Change-Id: Ibcc2d0b7bf3b254c70e55b30379ebd4b70933c26 Reviewed-on: https://gem5-review.googlesource.com/c/14675 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- diff --git a/src/base/inifiletest.cc b/src/base/inifiletest.cc index d33190580..4235997f7 100644 --- a/src/base/inifiletest.cc +++ b/src/base/inifiletest.cc @@ -32,13 +32,13 @@ * Steve Reinhardt */ +#include + #include #include #include #include -#include - #include "base/inifile.hh" using namespace std;