mirror of https://github.com/davisking/dlib.git
Fixed code needing C++14 to use C++11 features instead.
This commit is contained in:
parent
46bcd2059e
commit
b13840a86f
|
@ -1890,7 +1890,7 @@ namespace dlib
|
||||||
|
|
||||||
// If nearest-neighbor interpolation is wanted, then don't use an image pyramid.
|
// If nearest-neighbor interpolation is wanted, then don't use an image pyramid.
|
||||||
constexpr bool image_pyramid_enabled = !std::is_same<
|
constexpr bool image_pyramid_enabled = !std::is_same<
|
||||||
std::remove_const_t<std::remove_reference_t<decltype(interp)>>,
|
typename std::remove_const<typename std::remove_reference<decltype(interp)>::type>::type,
|
||||||
interpolate_nearest_neighbor
|
interpolate_nearest_neighbor
|
||||||
>::value;
|
>::value;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue