Browse Source

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 years ago
parent
commit
1a4398f375
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      GBUdb.cpp
  2. 1
    1
      SNFMulti.cpp

+ 1
- 1
GBUdb.cpp View File



public: 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), MyOperator(O),
MyMutex(M) { MyMutex(M) {
} }

+ 1
- 1
SNFMulti.cpp View File



//// Version Info //// 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 //// Script Caller Methods



Loading…
Cancel
Save