-
Notifications
You must be signed in to change notification settings - Fork 207
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
Add support for switching to nonstd::string_view #245
Comments
Inja 3.3 supports and includes this What is holding you back at C++11? |
@pantor Thanks for your reply. |
Yeah, I feel you. Still, thanks for your input! |
@pantor - in case this affects your decision, I also need C++11 support. 😞 I have an R package called jinjar, which provides Jinja-like templating to the R community. This is a fairly academic community, and people often use older linux machines. C++11 is pretty standard there, but C++17 is still considered very futuristic 😆 |
@davidchall I've tried to replace all |
I currently use c++11 for my project. There is no string_view support.
I've change all std::string_view to nonstd::string_view and works well.
I wonder if we can add this feature to inja, simply enable it by a macro.
Then inja can support c++11 as well.
https://github.com/martinmoene/string-view-lite
The text was updated successfully, but these errors were encountered: