From 0684a85e28b874fd3b547e2b5df94bd48d7e4846 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Wed, 20 Dec 2023 22:49:32 -0500 Subject: [PATCH] Remove class name --- LEGO1/mxrect32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/mxrect32.h b/LEGO1/mxrect32.h index 1393d6be..b54a9d92 100644 --- a/LEGO1/mxrect32.h +++ b/LEGO1/mxrect32.h @@ -34,7 +34,7 @@ class MxRect32 { MxRect32(const MxRect32& p_rect) { CopyFrom(p_rect); } - MxRect32& MxRect32::operator=(const MxRect32& p_rect) + MxRect32& operator=(const MxRect32& p_rect) { CopyFrom(p_rect); return *this;