Skip to content

Commit

Permalink
replace binary literals with hex
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Sep 13, 2016
1 parent 96f092b commit 63811e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions std/traits.d
Expand Up @@ -996,11 +996,11 @@ enum ParameterStorageClass : uint
* class.
*/
none = 0,
scope_ = 0b000_1, /// ditto
out_ = 0b001_0, /// ditto
ref_ = 0b010_0, /// ditto
lazy_ = 0b100_0, /// ditto
return_ = 0b1000_0, /// ditto
scope_ = 1, /// ditto
out_ = 2, /// ditto
ref_ = 4, /// ditto
lazy_ = 8, /// ditto
return_ = 0x10, /// ditto
}

/// ditto
Expand Down

0 comments on commit 63811e9

Please sign in to comment.