Hopefully fixed value_initialized compile errors on clang and comeau (strict mode) reported by Christopher Jefferson, see #4213

[SVN r61947]
This commit is contained in:
Niels Dekker 2010-05-13 14:36:06 +00:00
parent 22743ee125
commit f29a5db08e

View File

@ -164,6 +164,11 @@ class value_initialized
public :
value_initialized()
:
m_data()
{ }
T const & data() const
{
return m_data.data();