fix MSVC warnings

This commit is contained in:
Jean-Louis Leroy
2025-06-01 13:59:02 -04:00
parent ae60941daf
commit 179967f9c2
4 changed files with 20 additions and 1 deletions

View File

@@ -3,6 +3,10 @@
// See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifdef _MSC_VER
#pragma warning(disable: 4312)
#endif
struct Animal {
Animal(unsigned type) : type(type) {
}