tmp/tmppc7zd0jq/{from.md → to.md}
RENAMED
|
@@ -15,10 +15,10 @@ template<class charT, class traits>
|
|
| 15 |
*Effects:* Equivalent to:
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
auto i = wdi.index();
|
| 19 |
return os << (i >= 1 && i <= 5 ?
|
| 20 |
-
format(os.getloc(), STATICALLY-WIDEN<charT>("{}[{}]"), wdi.weekday(), i) :
|
| 21 |
-
format(os.getloc(), STATICALLY-WIDEN<charT>("{}[{} is not a valid index]"),
|
| 22 |
wdi.weekday(), i));
|
| 23 |
```
|
| 24 |
|
|
|
|
| 15 |
*Effects:* Equivalent to:
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
auto i = wdi.index();
|
| 19 |
return os << (i >= 1 && i <= 5 ?
|
| 20 |
+
format(os.getloc(), STATICALLY-WIDEN<charT>("{:L}[{}]"), wdi.weekday(), i) :
|
| 21 |
+
format(os.getloc(), STATICALLY-WIDEN<charT>("{:L}[{} is not a valid index]"),
|
| 22 |
wdi.weekday(), i));
|
| 23 |
```
|
| 24 |
|