Skip to content

Commit f9bfcf2

Browse files
committed
Fix old gcc build.
1 parent c8c0cd5 commit f9bfcf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/osvr/Util/IndentingStream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace util {
8282
class IndentingStream : public boost::iostreams::filtering_ostream {
8383
public:
8484
IndentingStream(size_t spaces, std::ostream &stream)
85-
: m_filter{spaces}, m_os{stream} {
85+
: m_filter(spaces), m_os(stream) {
8686
push(boost::ref(m_filter));
8787
push(m_os);
8888
}

0 commit comments

Comments
 (0)