From 439f04e19b4e0653479dd7d0c5581d06adb3d027 Mon Sep 17 00:00:00 2001 From: paxcut <53811119+paxcut@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:54:03 -0700 Subject: [PATCH] includes/std: Fixed "unknown function fm" error was shown in pattern data. (#225) --- includes/type/magic.pat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/type/magic.pat b/includes/type/magic.pat index 489e5ea..191d5b7 100644 --- a/includes/type/magic.pat +++ b/includes/type/magic.pat @@ -37,7 +37,7 @@ namespace auto type { fn format_magic(ref auto magic) { - return fm(magic.value); + return type::fm(magic.value); }; } } \ No newline at end of file