-
-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
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
error: '::memchr' has not been declared #12
Comments
It may be that the compiler is picking up ETL's string.h instead of the C library's version. |
Sorry, I don't get it to work. I tried #include "etl-8.2.0/src/vector.h"
#include "etl-8.2.0/src/string.h"
int main()
{
return 0;
} and ran
When I add
|
Hi Niel, Sorry to hear you're still having issues. private/pvoidvector.h is an error. I've updated the file in the master branch As for the other errors, could you try changing the cstring include in the classes to string.h and see if it makes a difference? John. |
I've changed the name of string.h to cstring.h which seems to solve the issues you are seeing. The code is on theme master branch. |
same question,Do you fixed? |
It is fixed as far as I know |
Using the release version 8.2.0, the following file cannot be compiled with
g++-5 -Ietl-8.2.0/src testetl.cpp -o testetl -std=c++11
using g++-5 (Homebrew gcc5 5.4.0) 5.4.0 on macOS 10.12.1.Errors:
The same errors occur with GCC 4.9.3 and GCC 6.2.0 with the same compiler flags.
The text was updated successfully, but these errors were encountered: