1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00

fixed BooleanNode constructor

This commit is contained in:
Marc Zinnschlag 2013-08-18 16:52:51 +02:00
parent c38860fa72
commit 470f890a9a

View File

@ -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,