diff options
| author | Benjamin Feng <benjamin.feng@glassdoor.com> | 2020-03-06 16:59:21 -0600 |
|---|---|---|
| committer | Benjamin Feng <benjamin.feng@glassdoor.com> | 2020-03-12 10:41:09 -0500 |
| commit | 4aae55b4ccf44fa3c2c2a81a6a34f3c898dece30 (patch) | |
| tree | a4116c5259e3f39df939008f23ac66f65ce61194 /lib/std/math/big | |
| parent | ed7f30e1cd0c00c82c511ad826fe8d8b60b2f57f (diff) | |
| download | zig-4aae55b4ccf44fa3c2c2a81a6a34f3c898dece30.tar.gz zig-4aae55b4ccf44fa3c2c2a81a6a34f3c898dece30.zip | |
Replace fmt with new fmtstream
Diffstat (limited to 'lib/std/math/big')
| -rw-r--r-- | lib/std/math/big/int.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/math/big/int.zig b/lib/std/math/big/int.zig index cef2bae98c..95d0764f68 100644 --- a/lib/std/math/big/int.zig +++ b/lib/std/math/big/int.zig @@ -518,7 +518,7 @@ pub const Int = struct { pub fn format( self: Int, comptime fmt: []const u8, - options: std.fmtstream.FormatOptions, + options: std.fmt.FormatOptions, out_stream: var, ) FmtError!void { self.assertWritable(); |
