diff options
| author | AlexApps99 <alex.apps99@gmail.com> | 2021-07-26 21:58:51 +1200 |
|---|---|---|
| committer | AlexApps99 <alex.apps99@gmail.com> | 2021-07-26 23:05:19 +1200 |
| commit | 42807160cfb33af9f3cf2fa6b0ba98f232208cdb (patch) | |
| tree | 95b1b16a3f4cf7d0ab51e90b3d73e53f74ba7f2b /src/Game/AI/Query/queryHasSetItem.cpp | |
| parent | 88bcc9eec1481b47361dc717c83e4953e8929a2b (diff) | |
Add #ifdef declarations for NON_MATCHING code
Diffstat (limited to 'src/Game/AI/Query/queryHasSetItem.cpp')
| -rw-r--r-- | src/Game/AI/Query/queryHasSetItem.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Game/AI/Query/queryHasSetItem.cpp b/src/Game/AI/Query/queryHasSetItem.cpp index 7b8ccd7d..82055adc 100644 --- a/src/Game/AI/Query/queryHasSetItem.cpp +++ b/src/Game/AI/Query/queryHasSetItem.cpp @@ -8,7 +8,8 @@ HasSetItem::HasSetItem(const InitArg& arg) : ksys::act::ai::Query(arg) {} HasSetItem::~HasSetItem() = default; -// NON_MATCHING: temp duplication +// temp duplication +#ifdef NON_MATCHING int HasSetItem::doQuery() { auto* gdm = ksys::gdt::Manager::instance(); if (gdm == nullptr) @@ -27,6 +28,7 @@ int HasSetItem::doQuery() { } return 0; } +#endif void HasSetItem::loadParams(const evfl::QueryArg& arg) { loadInt(arg.param_accessor, "Count"); |
