Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/games/allacrost/files/patch-src-luabind-luabind-detail-format__signature.hpp
16135 views
1
commit 3044a9053ac50977684a75c4af42b2bddb853fad
2
Author: Daniel Wallin <daniel@boostpro.com>
3
Date: Mon Oct 11 14:33:23 2010 +0200
4
5
Proper forward declarations for object wrappers. Now builds on clang!
6
7
diff --git luabind/detail/format_signature.hpp luabind/detail/format_signature.hpp
8
index 56e7963..b447bc9 100644
9
--- src/luabind/luabind/detail/format_signature.hpp
10
+++ src/luabind/luabind/detail/format_signature.hpp
11
@@ -13,12 +13,19 @@
12
# include <boost/mpl/next.hpp>
13
# include <boost/mpl/size.hpp>
14
15
-namespace luabind {
16
+namespace luabind { namespace adl
17
+{
18
19
-class object;
20
-class argument;
21
-template <class Base>
22
-struct table;
23
+ class object;
24
+ class argument;
25
+ template <class Base>
26
+ struct table;
27
+
28
+} // namespace adl
29
+
30
+using adl::object;
31
+using adl::argument;
32
+using adl::table;
33
34
} // namespace luabind
35
36
37