mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D31229 --HG-- extra : moz-landing-system : lando
18 lines
No EOL
326 B
C++
18 lines
No EOL
326 B
C++
namespace std {
|
|
class ios_base {
|
|
public:
|
|
typedef int io_state;
|
|
typedef int open_mode;
|
|
typedef int seek_dir;
|
|
|
|
typedef int streampos;
|
|
typedef int streamoff;
|
|
};
|
|
|
|
template <class CharT>
|
|
class basic_ios : public ios_base {
|
|
};
|
|
} // namespace std
|
|
|
|
// Test function return values (declaration)
|
|
std::ios_base::io_state f_5(); |