summaryrefslogtreecommitdiff
path: root/include/hashcomp.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2013-04-01 10:20:52 +0100
committerPeter Powell <petpow@saberuk.com>2013-04-01 10:43:12 +0100
commitf00ffba521c16d0f5419f60c0b4d362b362b76e6 (patch)
tree671bdb8aebf16739312a81d20075c4bef45f5347 /include/hashcomp.h
parentd877be98d1a89a18fb942ae9740e8fe65df359cf (diff)
Purge references to the deprecated GetStackedLine method.
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r--include/hashcomp.h10
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.