Visual Studio Code – MSVC Error: Template class with int64_t member – 'followed by __int64 is illegal'
Working on cross compiling this FLOSS, I'm trying to compile a simple template class that uses int64_t as a template parameter, but MSVC (Visual Studio 2019) gives me errors about illegal type usage. Here's a minimal example: #include <cstdint> class…