Title
Bitmask operations should use bitmask terms
Status
nad editorial
Section
[filesystems]
Submitter
Jonathan Wakely

Created on 2014-06-30.00:00:00 last changed 93 months ago

Messages

Date: 2016-08-11.20:14:16

[ Apr 2016 Issue updated to address the C++ Working Paper. Previously addressed File System TS ]

Date: 2016-08-11.20:14:16

[ 2016-02, Jacksonville ]

This is an editoral change.

Date: 2014-06-30.00:00:00

C++14 17.5.2.1.3 Bitmask types [bitmask.types] paragraph 4 specifies:

The following terms apply to objects and values of bitmask types:

  • To set a value Y in an object X is to evaluate the expression X |= Y.
  • To clear a value Y in an object X is to evaluate the expression X &= ~Y.
  • The value Y is set in the object X if the expression X & Y is nonzero.

The TS should use these forms where applicable throughout the document.

History
Date User Action Args
2016-08-11 20:14:16adminsetmessages: + msg8483
2016-08-11 20:14:16adminsetmessages: + msg8482
2014-06-30 00:00:00admincreate