diff options
| author | ljfa-ag <ljfa-ag@web.de> | 2015-08-10 22:56:32 +0200 |
|---|---|---|
| committer | ljfa-ag <ljfa-ag@web.de> | 2015-08-10 22:56:32 +0200 |
| commit | 85df484ff7aa34dd62fb6807ad0001a72f485c86 (patch) | |
| tree | f399b2b443d918af3ec98f1449154ce899ba803f /include | |
| parent | 8e7a1330ae09f4b6690a42ab113226c45df4bcf8 (diff) | |
| download | Project-Tick-85df484ff7aa34dd62fb6807ad0001a72f485c86.tar.gz Project-Tick-85df484ff7aa34dd62fb6807ad0001a72f485c86.zip | |
Make json_formatter::write method const
Diffstat (limited to 'include')
| -rw-r--r-- | include/text/json_formatter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text/json_formatter.h b/include/text/json_formatter.h index 6288a734b0..6a3e6aff00 100644 --- a/include/text/json_formatter.h +++ b/include/text/json_formatter.h @@ -36,7 +36,7 @@ namespace text class json_formatter { public: - void write(std::ostream& os, const tag& t); + void write(std::ostream& os, const tag& t) const; }; } |
