From b2f58d876dbf30d2d756664f79e4f43330f82448 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Wed, 20 Oct 2021 15:13:26 +0200 Subject: [PATCH] includes/libstd: Fixed missing semicolon in fixed point library --- includes/libstd/fxpt.pat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/libstd/fxpt.pat b/includes/libstd/fxpt.pat index 14cdae8..70db72c 100644 --- a/includes/libstd/fxpt.pat +++ b/includes/libstd/fxpt.pat @@ -12,7 +12,7 @@ namespace std::fxpt { fn change_precision(fixed value, u32 start_precision, u32 end_precision) { return std::fxpt::to_fixed(std::fxpt::to_float(value, start_precision), end_precision); - } + }; fn add(fixed a, fixed b, u32 precision) { return a + b; @@ -30,4 +30,4 @@ namespace std::fxpt { return (a << precision) / b; }; -} \ No newline at end of file +}