File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
frontend/include/chpl/types Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -314,8 +314,8 @@ class Type {
314314 always considered to be POD, and no further evaluation takes
315315 place.
316316
317- If 't' is the sync type, the single type, an atomic type, the
318- array type, or the domain type, then 't' is not POD.
317+ If 't' is the sync type, an atomic type, the array type, or
318+ the domain type, then 't' is not POD.
319319
320320 If 't' is a class with 'owned' or 'shared' management, then 't'
321321 is not POD.
Original file line number Diff line number Diff line change @@ -616,8 +616,6 @@ proc isArray(e) param do return isArrayValue(e);
616616proc isDmap(e) param do return isDmapValue(e);
617617/* Returns ``true`` if the argument is a ``sync`` type or a ``sync`` variable. */
618618proc isSync(e) param do return isSyncValue(e);
619- /* Returns ``true`` if the argument is a ``single`` type or a ``single`` variable. */
620- proc isSingle(e) param do return isSingleValue(e);
621619/* Returns ``true`` if the argument is an ``atomic`` type or an ``atomic`` variable.*/
622620proc isAtomic(e) param do return isAtomicValue(e);
623621
You can’t perform that action at this time.
0 commit comments