Heyo!
That’s because your toolchain is more recent than the one that’s expected by this plugin, so it actually catches a real c++ issue in the DLSS code.
You need to replace the places where you have:
enum class Streamline::EStreamlineFeatureSupport;
with:
namespace Streamline
{
enum class EStreamlineFeatureSupport;
}
Cheers