-
Notifications
You must be signed in to change notification settings - Fork 97
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
Fixed some compilation warnings and removed unused source code #94
Conversation
Base/FileTools.cpp
Outdated
@@ -155,7 +155,8 @@ std::string getCwd() | |||
#ifdef WIN32 | |||
_getcwd(cwd, FILENAME_MAX); | |||
#else | |||
getcwd(cwd, FILENAME_MAX); | |||
char* unused __attribute__((unused)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are compilers other than GCC supporting __attribute__
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@norihiro-w Thanks. Just removed it and gcc 7.3 still keeps silent after removing.
it looks ok for me besides one minor comment. |
👍 if Jenkins is green |
@norihiro-w Only the two benchmarks failed. The two benchmarks do not work for long time. I will fixed them in another PR. |
This PR