| author | |
| committer | |
| log | 53588f4f124bb713cc2c67c721d5f4e3586b7d79 |
| tree | cf905b4768b15eecdea6123cd879da61b52d8cd8 |
| parent | f885a1ab61a664378c3f3062a3de1150b6a4ee07 |
1 files changed, 1 insertions(+), 1 deletions(-)
std/math/atan2.zig+1-1| ... | ... | @@ -22,7 +22,7 @@ const std = @import("../index.zig"); |
| 22 | 22 | const math = std.math; |
| 23 | 23 | const assert = std.debug.assert; |
| 24 | 24 | |
| 25 | fn atan2(comptime T: type, x: T, y: T) T { | |
| 25 | pub fn atan2(comptime T: type, x: T, y: T) T { | |
| 26 | 26 | return switch (T) { |
| 27 | 27 | f32 => atan2_32(x, y), |
| 28 | 28 | f64 => atan2_64(x, y), |