remove unnecessary `inline`

works around a bug triggered by previous commit
master
Andrew Kelley 2020-03-31 11:17:40 -04:00
parent 47a0e3ec5e
commit d9d8c42426
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ pub fn clear_cache(start: usize, end: usize) callconv(.C) void {
const linkage = if (std.builtin.is_test) std.builtin.GlobalLinkage.Internal else std.builtin.GlobalLinkage.Weak;
inline fn exportIt() void {
fn exportIt() void {
@export(clear_cache, .{ .name = "__clear_cache", .linkage = linkage });
}