Created on 2015-09-15.00:00:00 last changed 100 months ago
Proposed resolution:
Change [fs.op.status] paragraph 2:
Effects: As if:
error_code ec; file_status result = status(p, ec); if (result.type() == file_type::none) ...
[ Apr 2016 Issue updated to address the C++ Working Paper. Previously addressed File System TS ]
[fs.op.status] paragraph 2 says:
Effects: As if:
error_code ec; file_status result = status(p, ec); if (result == file_type::none) ...
This won't compile, there is no comparison operator for file_status and file_type,
and the conversion from file_type to file_status is explicit.
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2017-07-30 20:15:43 | admin | set | status: wp -> c++17 |
| 2016-06-28 12:47:21 | admin | set | status: ready -> wp |
| 2016-04-10 22:23:37 | admin | set | messages: + msg8046 |
| 2016-03-07 04:46:57 | admin | set | status: new -> ready |
| 2016-01-28 01:00:35 | admin | set | messages: + msg7938 |
| 2015-09-15 00:00:00 | admin | create | |