Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Marsev <alex.marsev@gmail.com>2015-01-24 22:32:21 +0300
committerAlex Marsev <alex.marsev@gmail.com>2015-01-24 22:44:47 +0300
commit4d987c2c77143ac0c2ef51a661348e4b89251282 (patch)
tree47a6b43261c1aa47f01f56a6e03a204b2598d2c2 /src/Utils.h
parentb5d86124f0109582c1bda7a24131cf306612e11b (diff)
Pass eol with variadic template args
Diffstat (limited to 'src/Utils.h')
-rw-r--r--src/Utils.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Utils.h b/src/Utils.h
index cd38e68..de2aaa5 100644
--- a/src/Utils.h
+++ b/src/Utils.h
@@ -141,8 +141,7 @@ namespace SaneAudioRenderer
try
{
std::wostringstream stream;
- DebugOutForward(stream, std::forward<T>(args)...);
- stream << "\n";
+ DebugOutForward(stream, std::forward<T>(args)..., "\n");
OutputDebugString(stream.str().c_str());
}
catch (...)