diff options
author | Peter Powell <petpow@saberuk.com> | 2013-04-01 10:20:52 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-04-01 10:43:12 +0100 |
commit | f00ffba521c16d0f5419f60c0b4d362b362b76e6 (patch) | |
tree | 671bdb8aebf16739312a81d20075c4bef45f5347 /include/hashcomp.h | |
parent | d877be98d1a89a18fb942ae9740e8fe65df359cf (diff) |
Purge references to the deprecated GetStackedLine method.
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r-- | include/hashcomp.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 78d7ee878..b75214181 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -280,15 +280,7 @@ namespace irc * mode changes to be obtained. */ int GetStackedLine(std::vector<std::string> &result, int max_line_size = 360); - - /** deprecated compatability interface - TODO remove */ - int GetStackedLine(std::deque<std::string> &result, int max_line_size = 360) { - std::vector<std::string> r; - int n = GetStackedLine(r, max_line_size); - result.clear(); - result.insert(result.end(), r.begin(), r.end()); - return n; - } + }; /** irc::tokenstream reads a string formatted as per RFC1459 and RFC2812. |