-
-
Notifications
You must be signed in to change notification settings - Fork 747
minor style fixes #4247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minor style fixes #4247
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20941,10 +20941,7 @@ assert(PosInfInterval!Date(Date(1996, 1, 2)).begin == Date(1996, 1, 2)); | |
| assert(!PosInfInterval!Date(Date(1996, 1, 2)).empty); | ||
| -------------------- | ||
| +/ | ||
| @property bool empty() const pure nothrow | ||
| { | ||
| return false; | ||
| } | ||
| @property enum bool empty = false; | ||
|
|
||
|
|
||
| /++ | ||
|
|
@@ -23133,10 +23130,7 @@ assert(NegInfInterval!Date(Date(2012, 3, 1)).end == Date(2012, 3, 1)); | |
| assert(!NegInfInterval!Date(Date(1996, 1, 2)).empty); | ||
| -------------------- | ||
| +/ | ||
| @property bool empty() const pure nothrow | ||
| { | ||
| return false; | ||
| } | ||
| @property enum bool empty = false; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And here. |
||
|
|
||
|
|
||
| /++ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -163,7 +163,7 @@ module std.regex.internal.generator; | |
| return app.data; | ||
| } | ||
|
|
||
| @property empty(){ return false; } | ||
| @property enum empty = false; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't be
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See #4250 ;-) |
||
|
|
||
| void popFront() | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't be marked as
@propertyanymore either.