We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
basic_file
1 parent febe7c3 commit 4db7a6eCopy full SHA for 4db7a6e
include/tmp/file
@@ -64,6 +64,12 @@ extern "C++" int get_native_handle(std::FILE* file) noexcept;
64
template<class charT, class traits = std::char_traits<charT>>
65
class basic_file : public std::basic_iostream<charT, traits> {
66
public:
67
+ using char_type = charT;
68
+ using int_type = typename traits::int_type;
69
+ using pos_type = typename traits::pos_type;
70
+ using off_type = typename traits::off_type;
71
+ using traits_type = traits;
72
+
73
/// Implementation-defined handle type to the file
74
using native_handle_type =
75
std::invoke_result_t<decltype(detail::get_native_handle), std::FILE*>;
0 commit comments