Переменная C ++ _ULonglong не определена в Visual Studio 2017 - PullRequest
0 голосов
/ 18 декабря 2018

Проблема возникает в «_ULonglong».Возвращает ошибку о том, что она не определена.Некоторое время назад эта проблема застряла.

void clothes_adding(string type,string description,int quantity,string 
colour,string size,double price)
{

int location=0; //1= found the location for adding the clothes
number_Clothes=number_Clothes+1; //increase the number of item in the system 
by 1

//create a new template and putting all the data

newnode=new clothes();
newnode->id= "C00"+ to_string((_ULonglong)number_Clothes);
newnode->type=type;
newnode->description=description;
newnode->quantity=quantity;
newnode->colour=colour;
newnode->size=size;
newnode->price=price;
newnode->next=NULL;
newnode->back=NULL;

Включенные библиотеки, такие как "climits" и "windows.h", помогают решить проблему.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...