From b8cf6aca8bef860c2d0c34af77444188f48b9370 Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Fri, 9 May 2025 18:17:48 -0400 Subject: [PATCH] Fix rebase glitch The new address sanitizer code was committed to a file that I had later moved and renamed with the old commits. Having rebased onto master, those commits were carried on to the present point without generating a conflict and have since become invalid. --- tests/heap_allocator/libc/heap_allocator_windows.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/heap_allocator/libc/heap_allocator_windows.odin b/tests/heap_allocator/libc/heap_allocator_windows.odin index 37c1ff033..6b3034350 100644 --- a/tests/heap_allocator/libc/heap_allocator_windows.odin +++ b/tests/heap_allocator/libc/heap_allocator_windows.odin @@ -1,6 +1,6 @@ package tests_heap_allocator_libc -import "../sanitizer" +import "base:sanitizer" foreign import kernel32 "system:Kernel32.lib"