summaryrefslogtreecommitdiff
path: root/includes/SimpleMustache.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-28 00:47:12 -0800
committerPixel <pixel@nobis-crew.org>2011-11-28 00:47:12 -0800
commit50f08cb0b43a7d9fee1d4b3047d71f569d741380 (patch)
treec9bc861a547ee9c1dbf820ce58ebdc0c067f3825 /includes/SimpleMustache.h
parentdcbf05840a6b38dd56367fd68182db9c61f9e61d (diff)
Whoops: forgot to implement the escaping function.
Diffstat (limited to 'includes/SimpleMustache.h')
-rw-r--r--includes/SimpleMustache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SimpleMustache.h b/includes/SimpleMustache.h
index 7bf0342..5d0b9cf 100644
--- a/includes/SimpleMustache.h
+++ b/includes/SimpleMustache.h
@@ -98,7 +98,7 @@ class SimpleMustache {
Fragments m_fragments;
Fragments::iterator render_r(IO<Handle> h, Context * ctx, const String & endSection, Fragments::iterator begin, bool noWrite, int forceIdx);
- String escape(const String & s) { return s; }
+ String escape(const String & s);
};
};