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
Currently, support for std::functional is gated by #if defined(ARDUINO_ARCH_ESP32) || defined(ESP8266)
#if defined(ARDUINO_ARCH_ESP32) || defined(ESP8266)
This could be changed to #if __cplusplus >= 201103L to include other platforms that support <functional> such as Teensy.
#if __cplusplus >= 201103L
<functional>
The text was updated successfully, but these errors were encountered:
Could also check the header guard for , such as _GLIBCXX_STD_FUNCTION_H for GCC, but then it gets compiler-dependent
_GLIBCXX_STD_FUNCTION_H
Sorry, something went wrong.
LennartHennigs
No branches or pull requests
Currently, support for std::functional is gated by
#if defined(ARDUINO_ARCH_ESP32) || defined(ESP8266)
This could be changed to
#if __cplusplus >= 201103L
to include other platforms that support<functional>
such as Teensy.The text was updated successfully, but these errors were encountered: