0

我正在尝试使用 OOLUA 编译一个简单的程序,但我遇到了无法解释的错误。

编码:

#include <oolua.h>
#include <iostream>

class TestClass
{
public:
TestClass() { std::cout << "foo" << std::endl; }
~TestClass() { std::cout << "bar" << std::endl; }
};

OOLUA_CLASS_NO_BASES(TestClass)
OOLUA_NO_TYPEDEFS
OOLUA_CLASS_END

int main()
{
    OOLUA::Script vm;
    vm.register_class<TestClass>();

    OOLUA::run_chunk(vm, "obj = TestClass.new() ");
}

我正在使用 MinGW w64 4.9.2 i686 进行编译。它产生的错误是:

7 error: 'OOLUA_NO_TYPEDEFS' does not name a type
16 expected '}' at end of input
251 error: expected unqualified-if at end of input
251 expected '}' at end of input

有更多的宏在使用时无法编译,但目前它无法与简单的程序一起使用。任何输入表示赞赏。

4

0 回答 0