Skip to content

fixed some formatting #13

New issue

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

Merged
merged 1 commit into from
Mar 14, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/cpp/type-info-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ translation.priority.ht:
# type_info Class
The **type_info** class describes type information generated within the program by the compiler. Objects of this class effectively store a pointer to a name for the type. The **type_info** class also stores an encoded value suitable for comparing two types for equality or collating order. The encoding rules and collating sequence for types are unspecified and may differ between programs.

The <`typeinfo>` header file must be included in order to use the **type_info** class. The interface for the **type_info** class is:
The `<typeinfo>` header file must be included in order to use the **type_info** class. The interface for the **type_info** class is:

```
```cpp
class type_info {
public:
virtual ~type_info();
Expand Down Expand Up @@ -68,4 +68,4 @@ public:
Type information is generated for polymorphic classes only if the [/GR (Enable Run-Time Type Information)](../build/reference/gr-enable-run-time-type-information.md) compiler option is specified.

## See Also
[Run-Time Type Information](../cpp/run-time-type-information.md)
[Run-Time Type Information](../cpp/run-time-type-information.md)