diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-12-20 01:34:09 -0800 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-12-20 01:34:09 -0800 |
commit | 3a91332a70abfc777a352c46727f54426c982371 (patch) | |
tree | e2ea6da7b045af8daf749c957b70bdf721864a1e /includes/SimpleMustache.h | |
parent | 28e250cda01038c91fb9b69206c6f61f24764469 (diff) |
A few more Win32 / VisualStudio fixes.
Diffstat (limited to 'includes/SimpleMustache.h')
-rw-r--r-- | includes/SimpleMustache.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/includes/SimpleMustache.h b/includes/SimpleMustache.h index b01955b..f30c831 100644 --- a/includes/SimpleMustache.h +++ b/includes/SimpleMustache.h @@ -57,8 +57,6 @@ class SimpleMustache { LAMBDA, } m_type = CONTEXTLIST; Context(ContextType type) : m_type(type), m_root(false) { } - Context(Context & c) { Failure("You can't copy a Context; use references"); } - Context & operator=(Context & c) { Failure("You can't assign a Context; use references"); return *this; } String m_str; bool m_bool; typedef std::map<String, Context *> SubContext; |