From 3044a9053ac50977684a75c4af42b2bddb853fad Mon Sep 17 00:00:00 2001 From: Daniel Wallin Date: Mon, 11 Oct 2010 14:33:23 +0200 Subject: [PATCH] Proper forward declarations for object wrappers. Now builds on clang! --- luabind/detail/format_signature.hpp | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/luabind/detail/format_signature.hpp b/luabind/detail/format_signature.hpp index 56e7963..b447bc9 100644 --- a/luabind/detail/format_signature.hpp +++ b/luabind/detail/format_signature.hpp @@ -13,12 +13,19 @@ # include # include -namespace luabind { +namespace luabind { namespace adl +{ -class object; -class argument; -template -struct table; + class object; + class argument; + template + struct table; + +} // namespace adl + +using adl::object; +using adl::argument; +using adl::table; } // namespace luabind -- 2.11.4.GIT