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
Hi,
I'm trying to build ramulator 2.0 with clang++ 15. There are numerous errors on ../src/base/base.h:17, where the error says:
error: use 'template' keyword to treat 'as' as a dependent template name: return _config[_name].as{};
Should the 'template' keyword be put in front of "T", like this: return _config[_name].as();
Thanks
The text was updated successfully, but these errors were encountered:
Hi, I had the same issue. Applying the change proposed here #44 solved the issue for me.
Sorry, something went wrong.
cool, thanks @FrancescoValente, that solved my issue as well. Thanks a lot
No branches or pull requests
Hi,
I'm trying to build ramulator 2.0 with clang++ 15. There are numerous errors on ../src/base/base.h:17, where the error says:
error: use 'template' keyword to treat 'as' as a dependent template name:
return _config[_name].as{};
Should the 'template' keyword be put in front of "T", like this:
return _config[_name].as();
Thanks
The text was updated successfully, but these errors were encountered: