X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fdynref.h;h=2436720aa3976d934d7e5727b67bcd11ecbaae91;hb=4ce16000d3c7cdd46cbc84f608ec7c6d390d6817;hp=6e2e1742397edf463f551d56a6365bae09a7866f;hpb=87b1461e2a4710a38b32186c2582da9fe9bb3804;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/dynref.h b/include/dynref.h index 6e2e17423..2436720aa 100644 --- a/include/dynref.h +++ b/include/dynref.h @@ -1,8 +1,8 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2013 Attila Molnar - * Copyright (C) 2009 Daniel De Graaf + * Copyright (C) 2019 Sadie Powell + * Copyright (C) 2013-2015 Attila Molnar * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -43,7 +43,7 @@ class CoreExport dynamic_reference_base : public interfacebase, public insp::int ModuleRef creator; dynamic_reference_base(Module* Creator, const std::string& Name); ~dynamic_reference_base(); - inline const std::string& GetProvider() { return name; } + inline const std::string& GetProvider() const { return name; } void SetProvider(const std::string& newname); /** Set handler to call when the target object becomes available @@ -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(); };