From 8dccb31e6ea63afe5aa507c5ba1f6e11cd7810c8 Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Sun, 18 Jan 2009 02:18:56 +0000 Subject: [PATCH] Fixed issues with gcc 4.3.2 - semicolon after namespace closing brace not accepted. Thanks to klickverbot to point it out. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@303 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- include/aiTypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aiTypes.h b/include/aiTypes.h index 837e6dfc3..0387e1e5a 100644 --- a/include/aiTypes.h +++ b/include/aiTypes.h @@ -82,8 +82,8 @@ namespace Intern { void operator delete[] ( void* data); }; //! struct AllocateFromAssimpHeap -}; //! namespace Intern -}; //! namespace Assimp +} //! namespace Intern +} //! namespace Assimp extern "C" { #endif