summaryrefslogtreecommitdiff
path: root/include/anope.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/anope.h')
-rw-r--r--include/anope.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/anope.h b/include/anope.h
index 7ffc90729..0f181c87f 100644
--- a/include/anope.h
+++ b/include/anope.h
@@ -728,6 +728,11 @@ public:
/** Convert something to a string
*/
+inline Anope::string stringify(const Anope::string &x)
+{
+ return x;
+}
+
template<typename T> inline Anope::string stringify(const T &x)
{
std::ostringstream stream;