From 653ebf6675f42dde3cbda1fc088f84a7264ec013 Mon Sep 17 00:00:00 2001 From: batsumaru <> Date: Sun, 9 Aug 2026 17:26:31 +0900 Subject: Added fp_t division --- include/fixed_point.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/fixed_point.h b/include/fixed_point.h index ff8e2b3..9df6376 100644 --- a/include/fixed_point.h +++ b/include/fixed_point.h @@ -15,6 +15,7 @@ struct fp_t { fp_t operator+(const fp_t& other) const; fp_t operator-(const fp_t& other) const; fp_t operator*(const fp_t& other) const; + fp_t operator/(const fp_t& other) const; bool operator==(const fp_t& other) const; }; -- cgit v1.3