-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
error C3861: '_parse_input': identifier not found. #794
Comments
Related Visual Studio issue: Problem is that my code is compiling with |
Created a pull request for a fix: #809 |
PR merged. |
I updated to 15.8.3 and compilation failed ! a shame ! |
Using: VS 2017 Preview (15.8.3)
In the file
streams.h
line 1750 methodparse
calls the protected template function_parse_input
from a template base class.This gives an error:
cpprestsdk\release\include\cpprest\streams.h(1750): error C3861: '_parse_input': identifier not found
The solution is to prefix this call with the type:
_type_parser_base<CharType>
.The text was updated successfully, but these errors were encountered: