let dinifile.readFromEnv()'s environment parameter be const#9618
let dinifile.readFromEnv()'s environment parameter be const#9618wilzbach merged 1 commit intodlang:masterfrom
Conversation
|
Thanks for your pull request and interest in making D better, @Herringway! We are looking forward to reviewing it, and you should be hearing from a maintainer soon.
Please see CONTRIBUTING.md for more information. If you have addressed all reviews or aren't sure how to proceed, don't hesitate to ping us with a simple comment. Bugzilla referencesYour PR doesn't reference any Bugzilla issue. If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog. Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub fetch digger
dub run digger -- build "master + dmd#9618" |
|
Buildkite failure is unrelated. |
|
CC @CyberShadow. Did you change anything in are recently? It's failing now on Buildkite due to a missing file. |
Yes, I did. I changed the structure of |
|
I already excluded the previous Jenkins-based project tester by checking the environment: I've updated it to check for BuildKite: https://github.com/CyberShadow/ae/releases/tag/v0.0.2389 Hopefully that will work. |
| auto sv = environment.lookup(name, len); | ||
| const sv = environment.lookup(name, len); | ||
| if (sv && sv.ptrvalue) | ||
| return cast(const(char)*)sv.ptrvalue; // get cached value |
More const is nice, yes?