diff options
| author | Robin Voetter <robin@voetter.nl> | 2019-12-09 21:56:19 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-12-10 11:09:41 -0500 |
| commit | 4b4fbe388732da795c924293b4d1af3d9ca5ea69 (patch) | |
| tree | 278ddda90440c1f68aee5acb7318371aa2a2a7ad /lib/std/pdb.zig | |
| parent | f0ee0688f20dd012b4e069324abdba081ff19369 (diff) | |
| download | zig-4b4fbe388732da795c924293b4d1af3d9ca5ea69.tar.gz zig-4b4fbe388732da795c924293b4d1af3d9ca5ea69.zip | |
Replace @typeOf with @TypeOf in all zig source
This change was mostly made with `zig fmt` and this also modified some whitespace. Note that in some files, `zig fmt` produced incorrect code, so the change was made manually.
Diffstat (limited to 'lib/std/pdb.zig')
| -rw-r--r-- | lib/std/pdb.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/pdb.zig b/lib/std/pdb.zig index 4b9b3a2a65..db60e60494 100644 --- a/lib/std/pdb.zig +++ b/lib/std/pdb.zig @@ -635,7 +635,7 @@ const MsfStream = struct { /// Implementation of InStream trait for Pdb.MsfStream stream: Stream = undefined, - pub const Error = @typeOf(read).ReturnType.ErrorSet; + pub const Error = @TypeOf(read).ReturnType.ErrorSet; pub const Stream = io.InStream(Error); fn init(block_size: u32, file: File, blocks: []u32) MsfStream { |
