浏览代码

Fixed warning where a Mutex passed to GBUdbRecordLockingShim() by value should have been passed by reference. (reference to stack allocated object)

Bumped minor revision on the engine -- now 3.1.2.

git-svn-id: https://svn.microneil.com/svn/SNFMulti/trunk@56 dc71a809-1921-45c4-985c-09c81d0142d9
wx
madscientist 10 年前
父节点
当前提交
1a4398f375
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      GBUdb.cpp
  2. 1
    1
      SNFMulti.cpp

+ 1
- 1
GBUdb.cpp 查看文件

@@ -639,7 +639,7 @@ class GBUdbRecordLockingShim : public GBUdbOperator {

public:

GBUdbRecordLockingShim(GBUdbOperator& O, Mutex M) : // On construction we grab our critical pieces.
GBUdbRecordLockingShim(GBUdbOperator& O, Mutex& M) : // On construction we grab our critical pieces.
MyOperator(O),
MyMutex(M) {
}

+ 1
- 1
SNFMulti.cpp 查看文件

@@ -25,7 +25,7 @@ using namespace std;

//// Version Info

const char* SNF_ENGINE_VERSION = "SNFMulti Engine Version 3.1.1 Build: " __DATE__ " " __TIME__;
const char* SNF_ENGINE_VERSION = "SNFMulti Engine Version 3.1.2 Build: " __DATE__ " " __TIME__;

//// Script Caller Methods


正在加载...
取消
保存