summaryrefslogtreecommitdiff
path: root/include/m
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2025-11-20 01:24:43 -0500
committerelijah-thomas774 <elijahthomas774@gmail.com>2025-11-22 14:53:36 -0500
commitb4e57d0f406e8931ae9d9313baee7e704ae5b951 (patch)
tree63311a3c0e7dcdf7a82f9162496a9cf447f8e999 /include/m
parent54c3f67bdfc7de117899055558024b40266202ea (diff)
almost there
Diffstat (limited to 'include/m')
-rw-r--r--include/m/m_angle.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/m/m_angle.h b/include/m/m_angle.h
index 9913a15a..a6d8fe0f 100644
--- a/include/m/m_angle.h
+++ b/include/m/m_angle.h
@@ -48,10 +48,6 @@ struct mAng {
return mAng(-mVal);
}
- mAng operator+(const mAng &other) const {
- return mAng(mVal + other.mVal);
- }
-
mAng &operator+=(const mAng &other) {
mVal += other.mVal;
return *this;