aboutsummaryrefslogtreecommitdiff
path: root/std/buf_map.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-05-29 03:22:52 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-05-29 03:22:52 -0400
commitcb042c8343eb94a8d149fe1f5d69aa2746aa85d0 (patch)
tree36b9711c480b61c372c86bc47dd20a635d624d3a /std/buf_map.zig
parent7fa97b752e167de6df9a8a76999456d2c199b345 (diff)
parenteda6898c5b253367174172db909ee23013f32733 (diff)
downloadzig-cb042c8343eb94a8d149fe1f5d69aa2746aa85d0.tar.gz
zig-cb042c8343eb94a8d149fe1f5d69aa2746aa85d0.zip
Merge remote-tracking branch 'origin/master' into llvm7
Diffstat (limited to 'std/buf_map.zig')
-rw-r--r--std/buf_map.zig4
1 files changed, 1 insertions, 3 deletions
diff --git a/std/buf_map.zig b/std/buf_map.zig
index 57c5830bbe..930fc36a78 100644
--- a/std/buf_map.zig
+++ b/std/buf_map.zig
@@ -12,9 +12,7 @@ pub const BufMap = struct {
const BufMapHashMap = HashMap([]const u8, []const u8, mem.hash_slice_u8, mem.eql_slice_u8);
pub fn init(allocator: &Allocator) BufMap {
- var self = BufMap {
- .hash_map = BufMapHashMap.init(allocator),
- };
+ var self = BufMap{ .hash_map = BufMapHashMap.init(allocator) };
return self;
}