You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's and example that will break the auto generation of function declarations in the IDE, not sure for how long but I've gotten regular support request for a good while now.
The only thing I know, this used to work.
// say you have a library that accepts a callback
class BUG {public:BUG(void (*fn)(void)){}};
//void makeItBreak(){} //uncomment to fix
BUG b(makeItBreak); //this will break
void setup(){}
void loop(){}
void makeItBreak(){}