tmp/tmpq4q22zze/{from.md → to.md}
RENAMED
|
@@ -8,12 +8,12 @@ namespace std {
|
|
| 8 |
constexpr bool operator==(const type_info& rhs) const noexcept;
|
| 9 |
bool before(const type_info& rhs) const noexcept;
|
| 10 |
size_t hash_code() const noexcept;
|
| 11 |
const char* name() const noexcept;
|
| 12 |
|
| 13 |
-
type_info(const type_info&) = delete;
|
| 14 |
-
type_info& operator=(const type_info&) = delete;
|
| 15 |
};
|
| 16 |
}
|
| 17 |
```
|
| 18 |
|
| 19 |
The class `type_info` describes type information generated by the
|
|
|
|
| 8 |
constexpr bool operator==(const type_info& rhs) const noexcept;
|
| 9 |
bool before(const type_info& rhs) const noexcept;
|
| 10 |
size_t hash_code() const noexcept;
|
| 11 |
const char* name() const noexcept;
|
| 12 |
|
| 13 |
+
type_info(const type_info&) = delete;
|
| 14 |
+
type_info& operator=(const type_info&) = delete;
|
| 15 |
};
|
| 16 |
}
|
| 17 |
```
|
| 18 |
|
| 19 |
The class `type_info` describes type information generated by the
|