diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-06-15 13:49:39 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-06-16 19:37:00 -0400 |
| commit | e311cd562b47529bdcd2423658915539ddb6bc36 (patch) | |
| tree | 5b3d735831183076d83a405042eabebaf8c9c91e /std/build.zig | |
| parent | 59b3dc8907f76b93caa689732e878a5bfa2f65c2 (diff) | |
| download | zig-e311cd562b47529bdcd2423658915539ddb6bc36.tar.gz zig-e311cd562b47529bdcd2423658915539ddb6bc36.zip | |
don't automatically take pointer when passing by non-copying value
this commit does not have all tests passing
Diffstat (limited to 'std/build.zig')
| -rw-r--r-- | std/build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/build.zig b/std/build.zig index 16ce426bcb..92454a183a 100644 --- a/std/build.zig +++ b/std/build.zig @@ -234,7 +234,7 @@ pub const Builder = struct { defer wanted_steps.deinit(); if (step_names.len == 0) { - try wanted_steps.append(&self.default_step); + try wanted_steps.append(self.default_step); } else { for (step_names) |step_name| { const s = try self.getTopLevelStepByName(step_name); |
