Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/issue-1899' into 1.7-maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Apr 6, 2018
2 parents 3c294b6 + 7329660 commit b295cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/HeaderVal.hpp
Expand Up @@ -49,7 +49,7 @@ class BaseHeaderVal
BaseHeaderVal() : m_val(T()), m_valSet(false)
{}

BaseHeaderVal(const T& t) : m_defVal(t), m_valSet(false)
BaseHeaderVal(const T& t) : m_val(T()), m_defVal(t), m_valSet(false)
{}

public:
Expand Down

0 comments on commit b295cda

Please sign in to comment.