-
Notifications
You must be signed in to change notification settings - Fork 90
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
some errors #43
Comments
Hi, thanks for opening this issue.
You're right,
|
Return `size_t` instead of `ssize_t` Issue #43
I tagged v1.1.1 for the |
I also found a small error in the Multi-threaded Sending section of the readme.md file.
|
But, |
Thanks! |
They return a https://en.cppreference.com/w/cpp/string/basic_string_view https://docs.microsoft.com/en-us/cpp/standard-library/string-view-typedefs?view=msvc-160#string_view |
Yes, i use visual studio 2017 on windows, the error message is |
I don't have easy access to a Windows machine so it's inconvenient for me to write a fix for this because I can't test it on Windows. Would you like to make a PR to fix this problem? |
Yes, I will be happy to do PR. just modify as follows : |
Yes please, that looks good. https://en.cppreference.com/w/cpp/string/basic_string_view/data Do you know how to open a Pull Request? https://github.com/jamesdbrock/hffix/pulls |
…tible to const char * in Windows (issue jamesdbrock#43)
I created pull request #56 after encountering the same problem with MSVC |
…tible to const char * in Windows (issue #43)
void push_back_string(int tag, std::string_view s) { push_back_string(tag, s.begin(), s.end()); }
The text was updated successfully, but these errors were encountered: