Это вызывает проблему, поскольку другой используемая нами библиотека (https://github.com/microsoft/cpprestsdk) косвенно зависит от среды параллельного выполнения Windows.
Это приводит нас к concrt.h:
Код: Выделить всё
enum _Type
{
///
/// Indicates that the location represents the "system location". This has no specific affinity.
///
_System, // _M_id is meaningless
///
/// Indicates that the location represents a particular NUMA node.
///
_NumaNode, // _M_id is the Windows NUMA node number
///
/// Indicates that the location represents a particular scheduling node.
///
_SchedulingNode, // _M_id is the unique identifier for the scheduling node
///
/// Indicates that the location represents a particular execution resource.
///
_ExecutionResource, // _M_id is the unique identifier for the execution resource
};
Подробнее здесь: https://stackoverflow.com/questions/793 ... definition
Мобильная версия