From 66ab71a5c6590c61a1cc555148c869c354d87ef4 Mon Sep 17 00:00:00 2001 From: stephena Date: Fri, 30 May 2008 12:06:17 +0000 Subject: [PATCH] A few GCC 4.3 fixes. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1535 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/emucore/CartAR.cxx | 3 ++- stella/src/emucore/TrackBall.cxx | 4 +++- stella/src/unix/SerialPortUNIX.cxx | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/stella/src/emucore/CartAR.cxx b/stella/src/emucore/CartAR.cxx index 5589394ec..3f4b985e3 100644 --- a/stella/src/emucore/CartAR.cxx +++ b/stella/src/emucore/CartAR.cxx @@ -13,10 +13,11 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: CartAR.cxx,v 1.21 2008-03-28 23:29:13 stephena Exp $ +// $Id: CartAR.cxx,v 1.22 2008-05-30 12:06:17 stephena Exp $ //============================================================================ #include +#include #include "M6502Hi.hxx" #include "Random.hxx" diff --git a/stella/src/emucore/TrackBall.cxx b/stella/src/emucore/TrackBall.cxx index cba37fde2..5d2ba6c3e 100644 --- a/stella/src/emucore/TrackBall.cxx +++ b/stella/src/emucore/TrackBall.cxx @@ -13,9 +13,11 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: TrackBall.cxx,v 1.2 2008-05-19 03:15:12 stephena Exp $ +// $Id: TrackBall.cxx,v 1.3 2008-05-30 12:06:17 stephena Exp $ //============================================================================ +#include + #include "Event.hxx" #include "System.hxx" #include "TIA.hxx" diff --git a/stella/src/unix/SerialPortUNIX.cxx b/stella/src/unix/SerialPortUNIX.cxx index 4ce6d2b18..8a0279a47 100644 --- a/stella/src/unix/SerialPortUNIX.cxx +++ b/stella/src/unix/SerialPortUNIX.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: SerialPortUNIX.cxx,v 1.4 2008-04-11 17:56:34 stephena Exp $ +// $Id: SerialPortUNIX.cxx,v 1.5 2008-05-30 12:06:17 stephena Exp $ //============================================================================ #include @@ -23,6 +23,7 @@ #include #include #include +#include #include "SerialPortUNIX.hxx"