Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Identifier uint8_t is undefined - Visual Studio 2017 [closed]

I get an error with the type definitions. I am working with Visual Studio 2017 and so I included stdint.h for the type definitions. But I still have the Problem that the identifier uint8_t is undefined.

What's the problem?

like image 713
Sinem Avatar asked May 15 '18 08:05

Sinem


1 Answers

it is defined in "stdint.h", add that on the top of your cpp-file:

#include <stdint.h>
like image 63
PanicMan Avatar answered Nov 03 '22 21:11

PanicMan