From 5e078bfa5a64b1d3ebf78ff2cec0a8e7daaaf983 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Thu, 22 Dec 2011 15:23:54 -0500 Subject: [PATCH] Use __typeof__ instead of typeof Thiago Macieira compiles with -std=c++11. --- src/wayland-util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wayland-util.h b/src/wayland-util.h index 625a2d3..8061368 100644 --- a/src/wayland-util.h +++ b/src/wayland-util.h @@ -40,8 +40,8 @@ extern "C" { #define ALIGN(n, a) ( ((n) + ((a) - 1)) & ~((a) - 1) ) #define DIV_ROUNDUP(n, a) ( ((n) + ((a) - 1)) / (a) ) -#define container_of(ptr, type, member) ({ \ - const typeof( ((type *)0)->member ) *__mptr = (ptr); \ +#define container_of(ptr, type, member) ({ \ + const __typeof__( ((type *)0)->member ) *__mptr = (ptr); \ (type *)( (char *)__mptr - offsetof(type,member) );}) struct wl_message { -- 2.7.4