From 722eadaf14983e364e0bff9bdbc2fd74164c1d5a Mon Sep 17 00:00:00 2001 From: TimePath Date: Wed, 14 Oct 2015 22:18:36 +1100 Subject: [PATCH] Mutators: remove MUTATOR_(DECLARATION|DEFINITION) --- qcsrc/common/mutators/base.qh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/qcsrc/common/mutators/base.qh b/qcsrc/common/mutators/base.qh index 58213aabd..0ab6fcbba 100644 --- a/qcsrc/common/mutators/base.qh +++ b/qcsrc/common/mutators/base.qh @@ -203,13 +203,6 @@ void Mutator_Remove(Mutator mut) } } -#define MUTATOR_DECLARATION(name) \ - Mutator MUTATOR_##name -#define MUTATOR_DEFINITION(name) \ - bool MUTATORFUNCTION_##name(int mode); \ - [[accumulate]] void RegisterMutators() { MUTATOR_##name = NEW(Mutator, #name, MUTATORFUNCTION_##name); } \ - [[last]] bool MUTATORFUNCTION_##name(int mode) - const int MUTATORS_MAX = MAX_MUTATORS; noref entity MUTATORS[MUTATORS_MAX], MUTATORS_first, MUTATORS_last; noref int MUTATORS_COUNT; -- 2.39.2