Add a constexpr, because I can

This commit is contained in:
Laurent Rineau 2022-09-07 15:10:39 +02:00
parent 03b1501508
commit 8521c44c6f
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public:
// or `has_needs_ft<typename R::Compare_distance_3>` in
// the file `Kernel_23/test/Kernel_23/include/CGAL/_test_new_3.h`.
template <typename... Args>
bool needs_ft(const Args&...) const {
constexpr bool needs_ft(const Args&...) const {
return Call_operator_needs_FT<Args...>::value;
}