Compilation problem [SOLVED]

HI,
Was there some changes made to the cloud IDE? 2 days ago I was able to compile my code without any problems. but today its throwing some weird errors.

e.g. I’ve defined Connection class with TCPClient being its member, web IDE doesn’t see, to like that.

Connection.h:40:9: error: 'byte' does not name a type
Connection.h:44:9: error: 'TCPClient' does not name a type

Yep.

1 Like

Try:

include #include "application.h" at the top of your include file (.h) if you have one or at the top of your single file (no separate library files).

Original post from:

Thanks for quick reply guys!! I wonder how did I miss it.