mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-22 22:40:12 +00:00
fixed BooleanNode constructor
This commit is contained in:
parent
c38860fa72
commit
470f890a9a
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
#include "booleannode.hpp"
|
||||
|
||||
CSMFilter::BooleanNode::BooleanNode (bool true_) : mTrue (true) {}
|
||||
CSMFilter::BooleanNode::BooleanNode (bool true_) : mTrue (true_) {}
|
||||
|
||||
bool CSMFilter::BooleanNode::test (const CSMWorld::IdTable& table, int row,
|
||||
const std::map<std::string, const Node *>& otherFilters,
|
||||
|
|
Loading…
Reference in a new issue