summaryrefslogtreecommitdiff
path: root/include/mode.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-08-13 20:17:46 +0100
committerPeter Powell <petpow@saberuk.com>2018-08-13 21:51:11 +0100
commit58a0a7e01422e62de1565a8eb0a1febdc463d04d (patch)
tree8861789deefe9df3524690de8ccd11e5366f1f2e /include/mode.h
parente2a820cce21342478653a34cf8ce2b593128d035 (diff)
Implement IRCv3 message tag support.
Co-authored-by: Attila Molnar <attilamolnar@hush.com>
Diffstat (limited to 'include/mode.h')
-rw-r--r--include/mode.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/mode.h b/include/mode.h
index 4fa78bcac..ac23adc33 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -614,11 +614,6 @@ class CoreExport ModeParser : public fakederef<ModeParser>
*/
ModeHandler::Id AllocateModeId(ModeType mt);
- /** The string representing the last set of modes to be parsed.
- * Use GetLastParse() to get this value, to be used for display purposes.
- */
- std::string LastParse;
-
/** Cached mode list for use in 004 numeric
*/
TR1NS::array<std::string, 3> Cached004ModeList;
@@ -681,13 +676,6 @@ class CoreExport ModeParser : public fakederef<ModeParser>
/** Gets the last mode change to be processed. */
const Modes::ChangeList& GetLastChangeList() const { return LastChangeList; }
- /** Get the last string to be processed, as it was sent to the user or channel.
- * Use this to display a string you just sent to be parsed, as the actual output
- * may be different to what you sent after it has been 'cleaned up' by the parser.
- * @return Last parsed string, as seen by users.
- */
- const std::string& GetLastParse() const { return LastParse; }
-
/** Add a mode to the mode parser.
* Throws a ModuleException if the mode cannot be added.
*/