Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions std/datetime.d
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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