mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-12 17:15:21 +00:00
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.
This commit is contained in:
parent
6fb222e4f3
commit
9076e2e957
@ -1,6 +1,9 @@
|
||||
#ifndef _H_RESOURCE_PROVIDER
|
||||
#define _H_RESOURCE_PROVIDER
|
||||
|
||||
/* CEGUI 0.6 bug, CEGUITexture.h doesn't include this, we need to */
|
||||
#include <cstddef>
|
||||
|
||||
#include "CEGUIDefaultResourceProvider.h"
|
||||
|
||||
class CEGUIResourceProvider: public CEGUI::ResourceProvider {
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -3,6 +3,9 @@
|
||||
#define _softtexture_h_
|
||||
|
||||
#include <stdint.h>
|
||||
/* CEGUI 0.6 bug, CEGUITexture.h doesn't include this, we need to */
|
||||
#include <cstddef>
|
||||
|
||||
#include "CEGUIBase.h"
|
||||
#include "CEGUITexture.h"
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user