Fix CXX_BUILD

This commit is contained in:
Alcaro 2015-06-26 18:39:20 +02:00
parent 4ca6c2398c
commit adb2942e5c
2 changed files with 4 additions and 5 deletions

View File

@ -21,7 +21,6 @@
#include "../drivers/gl_common.h" #include "../drivers/gl_common.h"
#include <wayland-client.h> #include <wayland-client.h>
#include <wayland-client-protocol.h>
#include <wayland-egl.h> #include <wayland-egl.h>
#include <EGL/egl.h> #include <EGL/egl.h>

View File

@ -24,20 +24,20 @@ struct rmsgpack_dom_value {
union { union {
uint64_t uint_; uint64_t uint_;
int64_t int_; int64_t int_;
struct string_t { struct {
uint32_t len; uint32_t len;
char * buff; char * buff;
} string; } string;
struct binary_t { struct {
uint32_t len; uint32_t len;
char * buff; char * buff;
} binary; } binary;
int bool_; int bool_;
struct map_t { struct {
uint32_t len; uint32_t len;
struct rmsgpack_dom_pair * items; struct rmsgpack_dom_pair * items;
} map; } map;
struct array_t { struct {
uint32_t len; uint32_t len;
struct rmsgpack_dom_value * items; struct rmsgpack_dom_value * items;
} array; } array;