Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ff473839c |
@@ -1,6 +1,6 @@
|
||||
.{
|
||||
.name = .pugz,
|
||||
.version = "0.1.1",
|
||||
.version = "0.1.0",
|
||||
.fingerprint = 0x822db0790e17621d, // Changing this has security and trust implications.
|
||||
.minimum_zig_version = "0.15.2",
|
||||
.dependencies = .{
|
||||
|
||||
@@ -765,11 +765,8 @@ pub const Runtime = struct {
|
||||
}
|
||||
}
|
||||
|
||||
// If still not found, log warning and skip this mixin call
|
||||
const mixin_def = mixin orelse {
|
||||
std.log.warn("mixin '{s}' not found, skipping", .{call.name});
|
||||
return;
|
||||
};
|
||||
// If still not found, skip this mixin call
|
||||
const mixin_def = mixin orelse return;
|
||||
|
||||
try self.context.pushScope();
|
||||
defer self.context.popScope();
|
||||
|
||||
Reference in New Issue
Block a user