INT32_MAX was not declared in this scope
What is the solution for this (error occurred in C++) ?
INT32_MAX was not declared in this scope
What is the solution for this (error occurred in C++) ?
INT32_MAX
is defined in <stdint.h>
. You need:
#include <stdint.h>
in the offending source file.