diff --git luabind/detail/format_signature.hpp luabind/detail/format_signature.hpp
index 56e7963..b447bc9 100644
|
|
|
13 | 13 | # include <boost/mpl/next.hpp> |
14 | 14 | # include <boost/mpl/size.hpp> |
15 | 15 | |
16 | | namespace luabind { |
| 16 | namespace luabind { namespace adl |
| 17 | { |
17 | 18 | |
18 | | class object; |
19 | | class argument; |
20 | | template <class Base> |
21 | | struct table; |
| 19 | class object; |
| 20 | class argument; |
| 21 | template <class Base> |
| 22 | struct table; |
| 23 | |
| 24 | } // namespace adl |
| 25 | |
| 26 | using adl::object; |
| 27 | using adl::argument; |
| 28 | using adl::table; |
22 | 29 | |
23 | 30 | } // namespace luabind |
24 | 31 | |