aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-01-10 15:39:52 -0500
committerAndrew Kelley <superjoe30@gmail.com>2017-01-10 15:39:52 -0500
commit430e33b869b004ca24faee2dfa9e51aa4e94093f (patch)
tree8b5b3124c51214ac78151eddf28822f8e9d050c0 /src/analyze.hpp
parent8d27a027051e93e6f63aa9b969fed1dbfcf2aa73 (diff)
downloadzig-430e33b869b004ca24faee2dfa9e51aa4e94093f.tar.gz
zig-430e33b869b004ca24faee2dfa9e51aa4e94093f.zip
partially fix parseh command
Diffstat (limited to 'src/analyze.hpp')
-rw-r--r--src/analyze.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.hpp b/src/analyze.hpp
index cce39e9fe6..4132f463f0 100644
--- a/src/analyze.hpp
+++ b/src/analyze.hpp
@@ -26,7 +26,7 @@ TypeTableEntry *get_fn_type(CodeGen *g, FnTypeId *fn_type_id);
TypeTableEntry *get_maybe_type(CodeGen *g, TypeTableEntry *child_type);
TypeTableEntry *get_array_type(CodeGen *g, TypeTableEntry *child_type, uint64_t array_size);
TypeTableEntry *get_slice_type(CodeGen *g, TypeTableEntry *child_type, bool is_const);
-TypeTableEntry *get_partial_container_type(CodeGen *g, Scope *scope, ContainerKind kind, AstNode *decl_node, const char *name);
+TypeTableEntry *get_partial_container_type(CodeGen *g, Scope *scope, ContainerKind kind, AstNode *decl_node, const char *name, bool is_extern);
TypeTableEntry *get_smallest_unsigned_int_type(CodeGen *g, uint64_t x);
TypeTableEntry *get_error_type(CodeGen *g, TypeTableEntry *child_type);
TypeTableEntry *get_bound_fn_type(CodeGen *g, FnTableEntry *fn_entry);