We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
file
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
For the same reason that C++ makes all streams templated with a charT parameter, file should become
charT
template<class charT, class traits = std::char_traits<charT>> class basic_file : public std::basic_iostream<charT, traits>
file must be aliased basic_file<char> and exported from the library to maintain ABI compatibility
basic_file<char>
The text was updated successfully, but these errors were encountered:
tmp::basic_file
Successfully merging a pull request may close this issue.
For the same reason that C++ makes all streams templated with a
charT
parameter,file
should becomefile
must be aliasedbasic_file<char>
and exported from the library to maintain ABI compatibilityThe text was updated successfully, but these errors were encountered: