From a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Wed, 13 Nov 2019 19:16:21 +0300 Subject: Cosmetical changes. --- src/file.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/file.cpp') diff --git a/src/file.cpp b/src/file.cpp index 221ff81..c46a1f2 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -4,7 +4,7 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Texo File Exporter */ -TexoExporterFile::TexoExporterFile(FILE *file): file(file) +TexoExporterFile::TexoExporterFile(FILE * file): file(file) {} @@ -14,7 +14,7 @@ bool TexoExporterFile::Put(char c) return !ferror(file); } -bool TexoExporterFile::Put(const ScriptVariable &str) +bool TexoExporterFile::Put(const ScriptVariable & str) { fwrite(str.c_str(), 1, str.Length(), file); return !ferror(file); -- cgit v1.2.3