chung-leong / pb2zig

Pixel Bender to Zig code translator
MIT License
17 stars 1 forks source link

Removed redundant qualifier during variable initialization #4

Closed chung-leong closed 10 months ago

chung-leong commented 10 months ago
var v1: @Vector(4, f32) = @Vector(4, f32){ 1, 2, 3, 4 };

can be translated as

var v1: @Vector(4, f32) = .{ 1, 2, 3, 4 };