Skip to content

Commit

Permalink
Merge pull request #4250 from wilzbach/remove_at_property
Browse files Browse the repository at this point in the history
trivial: remove @Property from enums
  • Loading branch information
dnadlinger committed Apr 27, 2016
2 parents 86d4576 + d9de536 commit fda8267
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions std/datetime.d
Expand Up @@ -20941,7 +20941,7 @@ assert(PosInfInterval!Date(Date(1996, 1, 2)).begin == Date(1996, 1, 2));
assert(!PosInfInterval!Date(Date(1996, 1, 2)).empty);
--------------------
+/
@property enum bool empty = false;
enum bool empty = false;


/++
Expand Down Expand Up @@ -23130,7 +23130,7 @@ assert(NegInfInterval!Date(Date(2012, 3, 1)).end == Date(2012, 3, 1));
assert(!NegInfInterval!Date(Date(1996, 1, 2)).empty);
--------------------
+/
@property enum bool empty = false;
enum bool empty = false;


/++
Expand Down
2 changes: 1 addition & 1 deletion std/regex/internal/generator.d
Expand Up @@ -163,7 +163,7 @@ module std.regex.internal.generator;
return app.data;
}

@property enum empty = false;
enum empty = false;

void popFront()
{
Expand Down

0 comments on commit fda8267

Please sign in to comment.