]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/dynref.h
Add the inspircd.org/standard-replies capability.
[user/henk/code/inspircd.git] / include / dynref.h
index 8d55d10aac2d9be0bebc6f03e670fdd5377aef36..2569d755c7cf185627640a45e88f1fe1795df50e 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2019 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2019-2020 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2013-2015 Attila Molnar <attilamolnar@hush.com>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
@@ -52,7 +52,7 @@ class CoreExport dynamic_reference_base : public interfacebase, public insp::int
        void SetCaptureHook(CaptureHook* h) { hook = h; }
 
        void check();
-       operator bool() { return (value != NULL); }
+       operator bool() const { return (value != NULL); }
        static void reset_all();
 };