C++优雅之旅

探索C++

  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  15 随笔 :: 0 文章 :: 20 评论 :: 0 Trackbacks
太牛逼了,夸父,膜拜啊
re: Luabind导出类到lua 林公子 2009-09-25 10:00
@Eric Xiang
@liutp
不好意思,手误犯了低级错误
if (TestClass::mSingleton = NULL) 应为
if (TestClass::mSingleton == NULL)
或者写为
if (NULL == TestClass::mSingleton)
可以避免不小心将等号写为赋值符。
@teshorse
抱歉,是手误,你是对的,谢谢提醒:)。
re: VS2008下编译luabind 0.8.1 林公子 2009-05-03 22:06
@linfengfeiye
需要加的,luabind.lib,lua51.lib都是要加的,抱歉,文章中没有提到这一点。现在已经添加说明(文中红字)。