aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/complex.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-05-22 20:56:30 -0400
committerGitHub <noreply@github.com>2021-05-22 20:56:30 -0400
commit1c636e2564e2fc2e8e4b6b1edbc782592ee3d2d7 (patch)
tree5311dc81615ff9efa2b4840070371f54182f8bee /lib/std/math/complex.zig
parent9baf8917725ede02d9fc1aeebe253842174ee57b (diff)
parent563ea60a86a733f53f2394a11cb9ec4e56063fa3 (diff)
downloadzig-1c636e2564e2fc2e8e4b6b1edbc782592ee3d2d7.tar.gz
zig-1c636e2564e2fc2e8e4b6b1edbc782592ee3d2d7.zip
Merge pull request #8844 from ifreund/inline
Support inline keyword as well as callconv(.Inline)
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;