authorgravatar for leecannon@leecannon.xyzLee Cannon <leecannon@leecannon.xyz> 2022-09-29 12:41:39+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2022-09-29 14:41:39+03:00
log8d288a5fa77485121c3d3eafeedaaa381884c245
treec239184645c63bb914a3363cd2bc0d846f4c250a
parent5e0d8a435e51f7b5eb51d286bfaf0adb32d90381
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Fix `Step.cast` for `OptionsStep` and `CheckObjectStep`


2 files changed, 3 insertions(+), 1 deletions(-)

lib/std/build/CheckObjectStep.zig+1-1
......@@ -14,7 +14,7 @@ const Builder = build.Builder;
1414const Step = build.Step;
1515const EmulatableRunStep = build.EmulatableRunStep;
1616
17pub const base_id = .check_obj;
17pub const base_id = .check_object;
1818
1919step: Step,
2020builder: *Builder,
lib/std/build/OptionsStep.zig+2
......@@ -10,6 +10,8 @@ const FileSource = build.FileSource;
1010
1111const OptionsStep = @This();
1212
13pub const base_id = .options;
14
1315step: Step,
1416generated_file: GeneratedFile,
1517builder: *Builder,