tmp/tmp5cjsly3w/{from.md → to.md}
RENAMED
|
@@ -5,11 +5,11 @@ namespace std {
|
|
| 5 |
class ios_base::Init {
|
| 6 |
public:
|
| 7 |
Init();
|
| 8 |
~Init();
|
| 9 |
private:
|
| 10 |
-
static int init_cnt; // exposition
|
| 11 |
};
|
| 12 |
}
|
| 13 |
```
|
| 14 |
|
| 15 |
The class `Init` describes an object whose construction ensures the
|
|
|
|
| 5 |
class ios_base::Init {
|
| 6 |
public:
|
| 7 |
Init();
|
| 8 |
~Init();
|
| 9 |
private:
|
| 10 |
+
static int init_cnt; // exposition only
|
| 11 |
};
|
| 12 |
}
|
| 13 |
```
|
| 14 |
|
| 15 |
The class `Init` describes an object whose construction ensures the
|