Metal cpp compile errors

Hi, I trying to use Metal cpp, but I have compile error:

  1. ISO C++ requires the name after '::' to be found in the same scope as the name before '::'

metal-cpp/Foundation/NSSharedPtr.hpp(162):

template <class _Class>
_NS_INLINE NS::SharedPtr<_Class>::~SharedPtr()
{
    if (m_pObject)
    {
        m_pObject->release();
    }
}
  1. Use of old-style cast

metal-cpp/Foundation/NSObject.hpp(149):

template <class _Dst>
_NS_INLINE _Dst NS::Object::bridgingCast(const void* pObj)
{
#ifdef __OBJC__
    return (__bridge _Dst)pObj;
#else
    return (_Dst)pObj;
#endif // __OBJC__
}

XCode Project was generated using CMake:

target_compile_features(${MODULE_NAME} PRIVATE cxx_std_20)

target_compile_options(${MODULE_NAME}
    PRIVATE
        "-Wgnu-anonymous-struct"
        "-Wold-style-cast"
        "-Wdtor-name"
        "-Wpedantic"
        "-Wno-gnu"
)

May be need to set some CMake flags for C++ compiler ?