mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-02 22:52:26 +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
61c53ef9d8
commit
fc1b89dd5c
@ -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