summaryrefslogtreecommitdiffstats
path: root/client/gui/softrenderer.h
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-01-25 12:27:19 +0200
committerAlon Levy <alevy@redhat.com>2011-01-25 17:29:31 +0200
commit9076e2e9574531443e945e49f9acb6ccaf5458f5 (patch)
treee776957bba25672201188b08b6479e13a707d98f /client/gui/softrenderer.h
parent6fb222e4f3a1cd767ec0b32c51fae94313b29fb1 (diff)
downloadspice-9076e2e9574531443e945e49f9acb6ccaf5458f5.tar.gz
spice-9076e2e9574531443e945e49f9acb6ccaf5458f5.tar.xz
spice-9076e2e9574531443e945e49f9acb6ccaf5458f5.zip
client/cegui: cegui 0.6.0 gcc 4.6.0 related fix
cegui doesn't include stddef required for ptrdiff_t type, we include it for it.
Diffstat (limited to 'client/gui/softrenderer.h')
-rw-r--r--client/gui/softrenderer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/gui/softrenderer.h b/client/gui/softrenderer.h
index 9fc1a29e..f5155ad2 100644
--- a/client/gui/softrenderer.h
+++ b/client/gui/softrenderer.h
@@ -4,6 +4,8 @@
#include <stdint.h>
#include <list>
#include <set>
+/* CEGUI 0.6 bug, CEGUITexture.h doesn't include this, we need to */
+#include <cstddef>
#include "CEGUIRenderer.h"
#include "CEGUIColourRect.h"