From: Peter Maydell Date: Tue, 23 Feb 2016 11:58:02 +0000 (+0000) Subject: disas/arm-a64.cc: Include osdep.h first X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~30^2~6^2~8^2~168 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e78490c44ccd90507750a563493bad6d27e3693a;p=sdk%2Femulator%2Fqemu.git disas/arm-a64.cc: Include osdep.h first Rearrange include directives so that we include osdep.h first. This has to be done manually because clean-includes doesn't handle C++. Signed-off-by: Peter Maydell Reviewed-by: Eric Blake --- diff --git a/disas/arm-a64.cc b/disas/arm-a64.cc index d4d46d5ff3..9280950ce3 100644 --- a/disas/arm-a64.cc +++ b/disas/arm-a64.cc @@ -17,12 +17,13 @@ * along with this program. If not, see . */ -#include "vixl/a64/disasm-a64.h" - extern "C" { +#include "qemu/osdep.h" #include "disas/bfd.h" } +#include "vixl/a64/disasm-a64.h" + using namespace vixl; static Decoder *vixl_decoder = NULL;