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
From mjwia...@gmail.com on January 18, 2011 04:04:56
Yara uses the word 'namespace' which is a C++ reserved word in numerous locations as a variable name.
Trying to link yara into a C++ application leads to compilation errors.
Suggested fix is to simply rename the namespace variable to something that isn't a reserved word in the following locations:
yara.h lines 206, 295 ast.h line 164 libyara.c lines 201, 440 ast.c lines 28, 35, 166
yara-python.c contains the word namespace, but since this becomes a python module, not as much of a concern.
Original issue: http://code.google.com/p/yara-project/issues/detail?id=12
The text was updated successfully, but these errors were encountered:
From plus...@gmail.com on February 16, 2011 14:54:09
Fixed on r84 .
Status: Fixed
Sorry, something went wrong.
No branches or pull requests
From mjwia...@gmail.com on January 18, 2011 04:04:56
Yara uses the word 'namespace' which is a C++ reserved word in numerous locations as a variable name.
Trying to link yara into a C++ application leads to compilation errors.
Suggested fix is to simply rename the namespace variable to something that isn't a reserved word in the following locations:
yara.h lines 206, 295
ast.h line 164
libyara.c lines 201, 440
ast.c lines 28, 35, 166
yara-python.c contains the word namespace, but since this becomes a python module, not as much of a concern.
Original issue: http://code.google.com/p/yara-project/issues/detail?id=12
The text was updated successfully, but these errors were encountered: