From ed33f3ebce5257679b8e7204698a1c01ca8f51ae Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 10 Oct 2011 13:39:15 +1100 Subject: [PATCH] Use more accurate names for forward declares --- fwd.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fwd.hpp b/fwd.hpp index ed684f39..957bbeb1 100644 --- a/fwd.hpp +++ b/fwd.hpp @@ -20,8 +20,8 @@ #ifndef __UTIL_FWD_HPP #define __UTIL_FWD_HPP -#define DEFINE_STRUCT(x) struct x; -#define DEFINE_CLASS(x) class x; +#define DECLARE_STRUCT(x) struct x +#define DECLARE_CLASS(x) class x #endif