-
Notifications
You must be signed in to change notification settings - Fork 155
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
will it support c++11 sometime later? #14
Comments
Maybe. The main C++17 feature this library uses is std::string_view to prevent copying a lot of strings around. If somebody could find a good C++11 string_view implementation then I could probably make this library C++11 compatible. |
I know fmt (https://github.com/fmtlib/fmt) lib provide a string_view implementation called fmt::basic_string_view. |
here is another one: |
There is also this one - string-view-lite |
#19 should do the trick. Let me know if there's any issues. |
@Kvaz1r Thanks for the recommendation. It worked out perfectly! |
I am wondering that will csv-parser support c++11 some time later?
Thanks.
The text was updated successfully, but these errors were encountered: