From 0b2985ad66f7a5a3f7db2b7fc7f3b554ee1037a4 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Fri, 17 Sep 2010 17:18:09 +0100 Subject: [PATCH] cogl-object-private.h: Include cogl-debug.h If COGL_OBJECT_DEBUG is defined then cogl-object-private.h will call COGL_NOTE in the ref and unref macros. For this to work the debug header needs to also be included or COGL_NOTE won't necessarily be defined. --- cogl/cogl-object-private.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cogl/cogl-object-private.h b/cogl/cogl-object-private.h index 43617f198..2e90f0585 100644 --- a/cogl/cogl-object-private.h +++ b/cogl/cogl-object-private.h @@ -30,6 +30,7 @@ #include "cogl-types.h" #include "cogl-object.h" +#include "cogl-debug.h" /* For compatability until all components have been converted */ typedef struct _CoglObjectClass CoglHandleClass;