Commit f1b536c44c
Changed files (1)
lib
std
lib/std/build.zig
@@ -1469,13 +1469,13 @@ pub const Step = struct {
}
};
-const VcpkgRoot = union(VcpkgRootStatus) {
+pub const VcpkgRoot = union(VcpkgRootStatus) {
unattempted: void,
not_found: void,
found: []const u8,
};
-const VcpkgRootStatus = enum {
+pub const VcpkgRootStatus = enum {
unattempted,
not_found,
found,