Cleanup: Strict CLang warning in Smoke module

This commit is contained in:
Sergey Sharybin 2017-01-09 13:12:43 +01:00
parent bb88c7af81
commit d5cf90f59f

@ -949,6 +949,8 @@ operator<<( std::ostream& os, const BasicVector::Vector3Dim<Scalar>& i )
snprintf(buf,256,globVecFormatStr, (double)i[0],(double)i[1],(double)i[2]);
# endif
os << std::string(buf);
#else
(void)i; /* Ignored. */
#endif
return os;
}