aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/logsink.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yage/core/logsink.cpp')
-rw-r--r--yage/core/logsink.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/yage/core/logsink.cpp b/yage/core/logsink.cpp
index 081eb5b3..2f59d620 100644
--- a/yage/core/logsink.cpp
+++ b/yage/core/logsink.cpp
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
* logsink.cpp
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
@@ -92,11 +92,13 @@ private:
} // namespace
-LogSink makeFileSink(const std::string &filename) {
+LogSink makeFileSink(const std::string &filename)
+{
return FileSink(filename);
}
-LogSink makeFileSink(std::string &&filename) {
+LogSink makeFileSink(std::string &&filename)
+{
return FileSink(filename);
}