D issues are now tracked on GitHub. This Bugzilla instance remains as a read-only archive.
Issue 20836 - std.math: reorder declarations from most visible to least
Summary: std.math: reorder declarations from most visible to least
Status: RESOLVED FIXED
Alias: None
Product: D
Classification: Unclassified
Component: phobos (show other issues)
Version: D2
Hardware: All All
: P1 normal
Assignee: No Owner
URL:
Keywords: pull
Depends on:
Blocks:
 
Reported: 2020-05-16 06:03 UTC by Iain Buclaw
Modified: 2020-05-18 08:54 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Iain Buclaw 2020-05-16 06:03:41 UTC
It should be

```
public:

...

package:

...

private:

...

```

As it is currently 

```
public:

...

package:

...

public:

...
```
Comment 1 Dlang Bot 2020-05-16 22:05:25 UTC
@ibuclaw created dlang/phobos pull request #7485 "fix Issue 20836 - std.math: reorder declarations from most visible to least" fixing this issue:

- fix Issue 20836 - std.math: reorder declarations from most visible to least

https://github.com/dlang/phobos/pull/7485
Comment 2 Dlang Bot 2020-05-18 08:54:59 UTC
dlang/phobos pull request #7485 "fix Issue 20836 - std.math: reorder declarations from most visible to least" was merged into master:

- c9327ac06032283788b7ad62364cc85d0ff314cd by Iain Buclaw:
  fix Issue 20836 - std.math: reorder declarations from most visible to least

https://github.com/dlang/phobos/pull/7485