summaryrefslogtreecommitdiff
path: root/src/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.cpp')
-rw-r--r--src/file.cpp4
1 files changed, 2 insertions, 2 deletions
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);