diff options
author | Pixel <pixel@nobis-crew.org> | 2011-11-28 00:47:12 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2011-11-28 00:47:12 -0800 |
commit | 50f08cb0b43a7d9fee1d4b3047d71f569d741380 (patch) | |
tree | c9bc861a547ee9c1dbf820ce58ebdc0c067f3825 /includes | |
parent | dcbf05840a6b38dd56367fd68182db9c61f9e61d (diff) |
Whoops: forgot to implement the escaping function.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/SimpleMustache.h | 2 |
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); }; }; |