hi,
i meet compile error when use std in r19, the specific error prompts and simple test codes are as follows
//main.cpp
#include "c4d.h"
#include "main.h"
#include <string>
Bool PluginStart()
{
std::string test;
...
}
errors:
Error C2784 'const _Ty &std::_Max_value(const _Ty &,const _Ty &) noexcept': could not deduce template argument for 'const
_Ty &' from 'unsigned __int64'
e:\visualstudio2017\vc\tools\msvc\14.16.27023\include\xmemory0 45
Error C2782 'const _Ty &std::_Max_value(const _Ty &,const _Ty &) noexcept': template parameter '_Ty' is ambiguous
e:\visualstudio2017\vc\tools\msvc\14.16.27023\include\xmemory0 45
Error C2672 '_Max_value': no matching overloaded function found
e:\visualstudio2017\vc\tools\msvc\14.16.27023\include\xmemory0 43
it no errors in r20, and if any additional considerations in r19 when use std?
hope your help!