About the Site
I created a c++ project and here is my code
#include <kovan/kovan.h> int main(){ beep();}
A quick google search suggest that you try adding these lines before your #include
#define __STDC_LIMIT_MACROS#include <stdint.h>
EDIT: I added c tags so you can actually see the appropriate include.
weird.. that doesn't work. So i'm just going to manually define it for now
#define INT32_MAX 2147483647
I'm sorry the second line I posted should've been
#include <stdint.h>
#include <cstdint>
EDIT: I didn't realize the forum removed everything enclosed by brackets not in a c code block
A quick google search suggest that you try adding these lines before your #include
EDIT: I added c tags so you can actually see the appropriate include.
weird.. that doesn't work.
So i'm just going to manually define it for now
I'm sorry the second line I posted should've been
though I think it may be replaceable with
EDIT: I didn't realize the forum removed everything enclosed by brackets not in a c code block