we need to support all types of objects

This commit is contained in:
Sébastien Loriot 2025-08-07 18:44:34 +02:00
parent fdd7c17ec1
commit 29e6836e9c
1 changed files with 2 additions and 1 deletions

View File

@ -272,7 +272,8 @@ namespace internal
template <class NT>
struct Evaluate
{
void operator()(const NT&)
template <class T>
void operator()(const T&)
{}
};
} // internal namespace