Skip to content

Commit cbba998

Browse files
TylerMSFTTylerMSFT
authored andcommitted
fixup elements that should be quoted
1 parent fdd659c commit cbba998

1 file changed

Lines changed: 17 additions & 18 deletions

File tree

docs/standard-library/ios-typedefs.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
---
2-
title: "<ios> typedefs"
3-
description: "Describes the C++ standard template library (STL) `basic_ios` class"
4-
ms.date: "11/04/2016"
2+
title: "`<ios>` typedefs"
3+
description: "Describes the C++ standard template library (STL) `<ios>` typedefs that support the `ios` class from the old `iostream` library."
4+
ms.date: "11/06/2020"
55
f1_keywords: ["iosfwd/std::ios", "iosfwd/std::streamoff", "iosfwd/std::streampos", "iosfwd/std::streamsize", "iosfwd/std::wios", "iosfwd/std::wstreampos"]
6-
ms.assetid: 0b962632-3439-44de-bf26-20c67a7f0ff3
76
---
8-
# &lt;ios&gt; typedefs
7+
# `<ios>` typedefs
98

10-
## <a name="ios"></a> ios
9+
## `ios`
1110

12-
Supports the ios class from the old iostream library.
11+
Supports the `ios` class from the old `iostream` library.
1312

1413
```cpp
1514
typedef basic_ios<char, char_traits<char>> ios;
1615
```
1716

1817
### Remarks
1918

20-
The type is a synonym for class template [basic_ios](../standard-library/basic-ios-class.md), specialized for elements of type **`char`** with default character traits.
19+
The type is a synonym for class template [`basic_ios`](../standard-library/basic-ios-class.md), specialized for elements of type **`char`** with default character traits.
2120

22-
## <a name="streamoff"></a> streamoff
21+
## `streamoff`
2322

2423
Supports internal operations.
2524

@@ -35,7 +34,7 @@ Supports internal operations.
3534

3635
The type is a signed integer that describes an object that can store a byte offset involved in various stream positioning operations. Its representation has at least 32 value bits. It is not necessarily large enough to represent an arbitrary byte position within a stream. The value `streamoff(-1)` generally indicates an erroneous offset.
3736

38-
## <a name="streampos"></a> streampos
37+
## `streampos`
3938

4039
Holds the current position of the buffer pointer or file pointer.
4140

@@ -45,7 +44,7 @@ typedef fpos<mbstate_t> streampos;
4544

4645
### Remarks
4746

48-
The type is a synonym for [fpos](../standard-library/fpos-class.md)< `mbstate_t`>.
47+
The type is a synonym for [`fpos`](../standard-library/fpos-class.md)< `mbstate_t`>.
4948

5049
### Example
5150

@@ -70,7 +69,7 @@ int main( )
7069
7
7170
```
7271

73-
## <a name="streamsize"></a> streamsize
72+
## `streamsize`
7473

7574
Denotes the size of the stream.
7675

@@ -88,7 +87,7 @@ The type is a signed integer that describes an object that can store a count of
8887

8988
### Example
9089

91-
After compiling and running the following program, look at the file test.txt to see the effect of setting `streamsize`.
90+
After compiling and running the following program, look at the file `test.txt` to see the effect of setting `streamsize`.
9291

9392
```cpp
9493
// ios_streamsize.cpp
@@ -106,19 +105,19 @@ int main( )
106105
}
107106
```
108107
109-
## <a name="wios"></a> wios
108+
## `wios`
110109
111-
Supports the wios class from the old iostream library.
110+
Supports the `wios` class from the old iostream library.
112111
113112
```cpp
114113
typedef basic_ios<wchar_t, char_traits<wchar_t>> wios;
115114
```
116115

117116
### Remarks
118117

119-
The type is a synonym for class template [basic_ios](../standard-library/basic-ios-class.md), specialized for elements of type **`wchar_t`** with default character traits.
118+
The type is a synonym for class template [`basic_ios`](../standard-library/basic-ios-class.md), specialized for elements of type **`wchar_t`** with default character traits.
120119

121-
## <a name="wstreampos"></a> wstreampos
120+
## `wstreampos`
122121

123122
Holds the current position of the buffer pointer or file pointer.
124123

@@ -128,7 +127,7 @@ typedef fpos<mbstate_t> wstreampos;
128127

129128
### Remarks
130129

131-
The type is a synonym for [fpos](../standard-library/fpos-class.md)< `mbstate_t`>.
130+
The type is a synonym for [`fpos`](../standard-library/fpos-class.md)< `mbstate_t`>.
132131

133132
### Example
134133

0 commit comments

Comments
 (0)