From e0226e0cc31fc07a6919f253e4032ac22f1d31c9 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 26 Jan 2008 01:06:25 +0000 Subject: [PATCH] fix incorrect INLINE --- panda/src/gobj/internalName.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/gobj/internalName.h b/panda/src/gobj/internalName.h index 6a988ceb7a..4ecdb1fa56 100644 --- a/panda/src/gobj/internalName.h +++ b/panda/src/gobj/internalName.h @@ -52,7 +52,7 @@ PUBLISHED: bool unref() const; INLINE static PT(InternalName) make(const string &name); - INLINE static PT(InternalName) make(const string &name, int index); + static PT(InternalName) make(const string &name, int index); PT(InternalName) append(const string &basename); INLINE InternalName *get_parent() const;