Skip to content

Commit

Permalink
Fix old gcc build.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpavlik committed Apr 23, 2015
1 parent c8c0cd5 commit f9bfcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/osvr/Util/IndentingStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ namespace util {
class IndentingStream : public boost::iostreams::filtering_ostream {
public:
IndentingStream(size_t spaces, std::ostream &stream)
: m_filter{spaces}, m_os{stream} {
: m_filter(spaces), m_os(stream) {
push(boost::ref(m_filter));
push(m_os);
}
Expand Down

0 comments on commit f9bfcf2

Please sign in to comment.