A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
Compilation issue (vs2019 C++)
cyl cyl
1
Reputation point
Compiling the program in vs2019 failed with platform toolset v142, and then successfully compiled with platform toolset v140 when class variables vector array and atomic var are involved.
e.g.
std::vector<int> m_vN[10];
std::atomic<bool> m_vB;
error code
C2711
C3821
Developer technologies | C++
Developer technologies | C++
Sign in to answer