aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-24 02:25:22 -0400
committerGitHub <noreply@github.com>2019-10-24 02:25:22 -0400
commit345042ecbc7fb645fd17b69df4e57ffefa5be5a5 (patch)
tree457ea0157f0f42dccf905593426154be8682812b /src/analyze.hpp
parentef62452363de75240b21299e9f80b4851433faaa (diff)
parent60cd11bd4b48e4dfdf11d1f25cb1ee842a49ee1d (diff)
downloadzig-345042ecbc7fb645fd17b69df4e57ffefa5be5a5.tar.gz
zig-345042ecbc7fb645fd17b69df4e57ffefa5be5a5.zip
Merge pull request #3519 from ziglang/move-builtin-types
move types from builtin to std
Diffstat (limited to 'src/analyze.hpp')
-rw-r--r--src/analyze.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/analyze.hpp b/src/analyze.hpp
index 4592d1a0a1..5168dd2d7d 100644
--- a/src/analyze.hpp
+++ b/src/analyze.hpp
@@ -262,5 +262,7 @@ void add_async_error_notes(CodeGen *g, ErrorMsg *msg, ZigFn *fn);
IrInstruction *ir_create_alloca(CodeGen *g, Scope *scope, AstNode *source_node, ZigFn *fn,
ZigType *var_type, const char *name_hint);
+Error analyze_import(CodeGen *codegen, ZigType *source_import, Buf *import_target_str,
+ ZigType **out_import, Buf **out_import_target_path, Buf *out_full_path);
#endif