From 760fa8efd6817ec9c3a1ef5800eb9c64c0f1baf6 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. --- clutter/cogl/cogl/cogl-object-private.h | 1 + 1 file changed, 1 insertion(+) diff --git a/clutter/cogl/cogl/cogl-object-private.h b/clutter/cogl/cogl/cogl-object-private.h index 43617f198..2e90f0585 100644 --- a/clutter/cogl/cogl/cogl-object-private.h +++ b/clutter/cogl/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;