Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
[dcpomatic.git] / src / lib / safe_stringstream.h
index e455de964b4acc5922b8cd01d79312072c43b16b..e6f6595ba7a34380bd1784e1b4dfb4f64d2dea90 100644 (file)
@@ -44,11 +44,11 @@ class SafeStringStream
 public:
        SafeStringStream ()
        {}
-       
+
        SafeStringStream (std::string s)
                : _stream (s)
        {}
-       
+
        template <class T>
        std::ostream& operator<< (T val)
        {
@@ -84,6 +84,11 @@ public:
                _stream.width (w);
        }
 
+       void fill (int f)
+       {
+               _stream.fill (f);
+       }
+
        void precision (int p)
        {
                _stream.precision (p);