Skip to content

Commit 150da41

Browse files
VXL Maintainershjmjohnson
authored andcommitted
VXL 2025-11-16 (3096fc83)
Code extracted from: https://github.com/vxl/vxl.git at commit 3096fc83b3e5dc1c958e421e99defcb935d9b70b (master).
1 parent 77e3bef commit 150da41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Modules/ThirdParty/VNL/src/vxl/core/vnl/vnl_complex_traits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ struct VNL_EXPORT vnl_complex_traits<std::complex<vnl_bignum>>
206206
isreal = false
207207
};
208208
static std::complex<float>
209-
conjugate(std::complex<vnl_bignum> x)
209+
conjugate(std::complex<vnl_bignum> /* x */)
210210
{
211211
throw std::runtime_error("Can not call complexify on non floating point data type");
212212
return std::complex<float>(0., 0.);

Modules/ThirdParty/VNL/src/vxl/core/vnl/vnl_math.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ angle_minuspi_to_pi(double angle);
147147
namespace vnl_math
148148
{
149149
#if defined(_MSC_VER)
150-
// MSVC does not properly implement isfinite, iinf, isnan for C++11 conformance for integral types
150+
// MSVC does not properly implement isfinite, isinf, isnan for C++11 conformance for integral types
151151
// For integral types only:
152152
template <typename T>
153153
_Check_return_ typename std::enable_if<std::is_integral<T>::value, bool>::type

0 commit comments

Comments
 (0)