1.. title:: clang-tidy - modernize-deprecated-ios-base-aliases
2
3modernize-deprecated-ios-base-aliases
4=====================================
5
6Detects usage of the deprecated member types of ``std::ios_base`` and replaces
7those that have a non-deprecated equivalent.
8
9===================================  ===========================
10Deprecated member type               Replacement
11===================================  ===========================
12``std::ios_base::io_state``          ``std::ios_base::iostate``
13``std::ios_base::open_mode``         ``std::ios_base::openmode``
14``std::ios_base::seek_dir``          ``std::ios_base::seekdir``
15``std::ios_base::streamoff``
16``std::ios_base::streampos``
17===================================  ===========================
18