tmp/tmpjff6si94/{from.md → to.md}
RENAMED
|
@@ -84,10 +84,10 @@ template<class charT, class traits>
|
|
| 84 |
*Effects:* Equivalent to:
|
| 85 |
|
| 86 |
``` cpp
|
| 87 |
auto i = wdi.index();
|
| 88 |
return os << (i >= 1 && i <= 5 ?
|
| 89 |
-
format(os.getloc(), STATICALLY-WIDEN<charT>("{}[{}]"), wdi.weekday(), i) :
|
| 90 |
-
format(os.getloc(), STATICALLY-WIDEN<charT>("{}[{} is not a valid index]"),
|
| 91 |
wdi.weekday(), i));
|
| 92 |
```
|
| 93 |
|
|
|
|
| 84 |
*Effects:* Equivalent to:
|
| 85 |
|
| 86 |
``` cpp
|
| 87 |
auto i = wdi.index();
|
| 88 |
return os << (i >= 1 && i <= 5 ?
|
| 89 |
+
format(os.getloc(), STATICALLY-WIDEN<charT>("{:L}[{}]"), wdi.weekday(), i) :
|
| 90 |
+
format(os.getloc(), STATICALLY-WIDEN<charT>("{:L}[{} is not a valid index]"),
|
| 91 |
wdi.weekday(), i));
|
| 92 |
```
|
| 93 |
|