Removed obsolete methods from std_map.i and pyiterators.swg. Added builtin-check target to python test suite Makefile. Fixed using_namespace_loop.i so that the generated wrappers will compile. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12644 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
159 B
OpenEdge ABL
16 lines
159 B
OpenEdge ABL
%module using_namespace_loop
|
|
|
|
%inline {
|
|
namespace A {
|
|
struct Foo;
|
|
}
|
|
|
|
namespace B {
|
|
using namespace A;
|
|
}
|
|
|
|
namespace A {
|
|
using namespace B;
|
|
typedef Foo Bar;
|
|
}
|
|
}
|