From f58b38a1ed01b0678b5315e10e7e1ad3d2f785ee Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 6 Dec 2020 11:04:25 +0100 Subject: [PATCH] suppress warning that is not relevant (we don't use floats) --- src/include/cppduals/duals/dual | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/cppduals/duals/dual b/src/include/cppduals/duals/dual index ab2141ea3..7605552d2 100644 --- a/src/include/cppduals/duals/dual +++ b/src/include/cppduals/duals/dual @@ -528,6 +528,7 @@ public: : _real(re), _dual(du) {} /// Copy construct from a dual of equal depth. +#pragma warning (disable : 4244) /* floats are not used in HICUM */ template::value)> dual(const dual & x)