Silence various warnings discovered with new version of clang.

This commit is contained in:
Atgeirr Flø Rasmussen
2019-01-08 14:51:20 +01:00
parent 85949d44ac
commit db90ecd88c
5 changed files with 11 additions and 11 deletions

View File

@@ -1199,7 +1199,7 @@ struct MessageBuffer
template <class T>
void write( const T& value )
{
str_.write( (char *) &value, sizeof(value) );
str_.write( (const char *) &value, sizeof(value) );
}
void write( const std::string& str)