diff options
| author | Eric Joldasov <bratishkaerik@getgoogleoff.me> | 2023-06-05 00:17:09 +0600 |
|---|---|---|
| committer | Eric Joldasov <bratishkaerik@getgoogleoff.me> | 2023-06-13 23:46:58 +0600 |
| commit | 4936453d56a565c79535261bd3ee8fe35a3864fb (patch) | |
| tree | 058f848d4cdc376ca728f4b35d3a3f199bef6e73 /lib | |
| parent | 4d5fb62a82065e84c6df6bb1bf911c561cdd51e0 (diff) | |
| download | zig-4936453d56a565c79535261bd3ee8fe35a3864fb.tar.gz zig-4936453d56a565c79535261bd3ee8fe35a3864fb.zip | |
std.builtin: remove `TypeInfo` and `Type.FnArg` (deprecated in 0.10)
Followup to d3d24874c91054a70c706fed47278c81c9ce890a.
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/std/builtin.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index ef93bb14ee..b449080e86 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -221,7 +221,6 @@ pub const SourceLocation = struct { }; pub const TypeId = std.meta.Tag(Type); -pub const TypeInfo = @compileError("deprecated; use Type"); /// This data structure is used by the Zig language code generation and /// therefore must be kept in sync with the compiler implementation. @@ -388,8 +387,6 @@ pub const Type = union(enum) { decls: []const Declaration, }; - pub const FnArg = @compileError("deprecated; use Fn.Param"); - /// This data structure is used by the Zig language code generation and /// therefore must be kept in sync with the compiler implementation. pub const Fn = struct { |
