summaryrefslogtreecommitdiff
path: root/src/fixed_point.cpp
diff options
context:
space:
mode:
authorbatsumaru <>2026-08-19 20:38:28 +0900
committerbatsumaru <>2026-08-19 20:38:28 +0900
commit45bec8812c9d5aa1065cf36a8ca878fda5a6b325 (patch)
tree2a24923cc49ed640fce129a291beed038cd47786 /src/fixed_point.cpp
parent8918325808f9e474c473f4e1c1b4e4e73b8187cf (diff)
Added SimStateHEADmaster
Diffstat (limited to 'src/fixed_point.cpp')
-rw-r--r--src/fixed_point.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/fixed_point.cpp b/src/fixed_point.cpp
index a39f2bc..3a69958 100644
--- a/src/fixed_point.cpp
+++ b/src/fixed_point.cpp
@@ -39,7 +39,3 @@ fp_t fp_t::operator/(const fp_t& other) const {
}
return {static_cast<std::int32_t>(temp)};
}
-
-bool fp_t::operator==(const fp_t& other) const {
- return raw == other.raw;
-}