diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-04-18 00:05:09 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-04-18 00:05:09 -0400 |
| commit | 407916cd2f3f4931de29fd87b8c9ae3faeba8452 (patch) | |
| tree | 5ee194f80ce127d81e220869cd56bb53c1c04f17 /src/codegen.cpp | |
| parent | def4fbc9ab704b1add5c3af40692b3d26594e58e (diff) | |
| download | zig-407916cd2f3f4931de29fd87b8c9ae3faeba8452.tar.gz zig-407916cd2f3f4931de29fd87b8c9ae3faeba8452.zip | |
rename `@intType` to `@IntType` to follow convention
closes #327
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index 38e0b37250..7222cd3fc8 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -4500,7 +4500,7 @@ static void define_builtin_fns(CodeGen *g) { create_builtin_fn(g, BuiltinFnIdTruncate, "truncate", 2); create_builtin_fn(g, BuiltinFnIdCompileErr, "compileError", 1); create_builtin_fn(g, BuiltinFnIdCompileLog, "compileLog", SIZE_MAX); - create_builtin_fn(g, BuiltinFnIdIntType, "intType", 2); + create_builtin_fn(g, BuiltinFnIdIntType, "IntType", 2); create_builtin_fn(g, BuiltinFnIdSetDebugSafety, "setDebugSafety", 2); create_builtin_fn(g, BuiltinFnIdSetGlobalAlign, "setGlobalAlign", 2); create_builtin_fn(g, BuiltinFnIdSetGlobalSection, "setGlobalSection", 2); |
