authorgravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2018-03-22 19:18:51+13:00
committergravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2018-03-22 19:18:51+13:00
log53588f4f124bb713cc2c67c721d5f4e3586b7d79
treecf905b4768b15eecdea6123cd879da61b52d8cd8
parentf885a1ab61a664378c3f3062a3de1150b6a4ee07

Add missing pub specifier to atan2


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

std/math/atan2.zig+1-1
......@@ -22,7 +22,7 @@ const std = @import("../index.zig");
2222const math = std.math;
2323const assert = std.debug.assert;
2424
25fn atan2(comptime T: type, x: T, y: T) T {
25pub fn atan2(comptime T: type, x: T, y: T) T {
2626 return switch (T) {
2727 f32 => atan2_32(x, y),
2828 f64 => atan2_64(x, y),