We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following files use #ifdef __cplusplus. This should be corrected, because .cpp files (unlike .h files) can not be anything else.
#ifdef __cplusplus
.cpp
.h
The C-isms should also be corrected.
#define
constexpr
extern "C"
My guess is that these are cut/paste errors after refactorings.
The text was updated successfully, but these errors were encountered:
I've corrected this. Will push a patches later today.
Sorry, something went wrong.
Fix #127; make AnalogRead more debuggable chasing #125
381506b
e7b37e7
terrillmoore
No branches or pull requests
The following files use
#ifdef __cplusplus
. This should be corrected, because.cpp
files (unlike.h
files) can not be anything else.The C-isms should also be corrected.
#define
can almost always be replaced byconstexpr
extern "C"
-- they can (and should) be C++, or even converted to private method functions.My guess is that these are cut/paste errors after refactorings.
The text was updated successfully, but these errors were encountered: