summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/vecstream.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-08-27 16:45:53 +1000
committer Vas Crabb <vas@vastheman.com>2016-08-27 16:45:53 +1000
commit75be4dff5f28a3dbca9fdfe1781adbc147d57411 (patch)
tree2ee4baecdfbd330b0e64c81910a5cf864a433a02 /src/lib/util/vecstream.cpp
parenteff28a88cd200be94564dc2fc950d901224de62a (diff)
While I'm causing full recompiles all the time, reduce necessary number of instantiations of parts of string formatting engine
Diffstat (limited to 'src/lib/util/vecstream.cpp')
-rw-r--r--src/lib/util/vecstream.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/util/vecstream.cpp b/src/lib/util/vecstream.cpp
new file mode 100644
index 00000000000..0d584167c62
--- /dev/null
+++ b/src/lib/util/vecstream.cpp
@@ -0,0 +1,22 @@
+// license:BSD-3-Clause
+// copyright-holders:Vas Crabb
+/***************************************************************************
+
+ vecstream.cpp
+
+ streams with vector storage
+
+***************************************************************************/
+
+#include "vecstream.h"
+
+namespace util {
+
+template class basic_ivectorstream<char>;
+template class basic_ivectorstream<wchar_t>;
+template class basic_ovectorstream<char>;
+template class basic_ovectorstream<wchar_t>;
+template class basic_vectorstream<char>;
+template class basic_vectorstream<wchar_t>;
+
+} // namespace util