Eclipse cannot resolve type
Posted: Thu Aug 30, 2018 6:31 pm
Not sure this is the right forum but..
Eclipse is driving me nuts. I want to code ESP32 using Eclipse on Linux but I keep running into issues. I have a smaall piece of code that builds and flashed succefully but Eclipse keeps telling me it cannot resolve some types and functions.
I added an include statement that seems to work just fine:
But when I want to declare a mutex or use one of the functions, eclipse is complaining. This statement produces an "cannot resolve" error:
Compiling from the commandline and from eclipse works! No issues there.
I tried importing the @kolban C++ includes but that didn't help.
Eclipse is driving me nuts. I want to code ESP32 using Eclipse on Linux but I keep running into issues. I have a smaall piece of code that builds and flashed succefully but Eclipse keeps telling me it cannot resolve some types and functions.
I added an include statement that seems to work just fine:
Code: Select all
#include <mutex>
Code: Select all
mutable std::mutex _mtx;
I tried importing the @kolban C++ includes but that didn't help.