Problem `std::derived_from` in Android build

I’m developing an Android application for Meta Quest 3, and I’ve the following code:

#include<concepts>

// ...

template<std::derived_from<APawn> T>
void MyFunc()
{
    // ...
}

that compile fine in Visual Studio, but when I trigger the Android build from Unreal Engine I’ve this error: error: no template named 'derived_from' in namespace 'std'.