aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/complex.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2021-05-20 17:07:06 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2021-05-20 17:14:18 +0200
commit5b850d5c9251900962e52154eb0fb9c2a344476d (patch)
tree56978e4ad48b44dc723a24d9b62c4d2fe6ab8a32 /lib/std/math/complex.zig
parent4a582734fd84f2096ca9bb559387ddd04c70ed57 (diff)
downloadzig-5b850d5c9251900962e52154eb0fb9c2a344476d.tar.gz
zig-5b850d5c9251900962e52154eb0fb9c2a344476d.zip
Run `zig fmt` on src/ and lib/std/
This replaces callconv(.Inline) with the more idiomatic inline keyword.
Diffstat (limited to 'lib/std/math/complex.zig')
-rw-r--r--lib/std/math/complex.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/math/complex.zig b/lib/std/math/complex.zig
index 614d9d0ae1..7d37fcca5b 100644
--- a/lib/std/math/complex.zig
+++ b/lib/std/math/complex.zig
@@ -38,7 +38,7 @@ pub fn Complex(comptime T: type) type {
/// Imaginary part.
im: T,
-
+
/// Deprecated, use init()
pub const new = init;