]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/longlong.cpp
Some BC++ 5.4 fixes
[wxWidgets.git] / src / common / longlong.cpp
index 5fd1016b5f3b0801fe2330aeebb14c156c1f30a3..d85b5420fb4b017f5316c7ff7e3a9be8cd85bd45 100644 (file)
@@ -591,7 +591,9 @@ wxLongLongWx& wxLongLongWx::operator/=(const wxLongLongWx& ll)
 
     Divide(ll, quotient, remainder);
 
-    return *this = quotient;
+    *this = quotient;
+    
+    return *this;
 }
 
 wxLongLongWx wxLongLongWx::operator%(const wxLongLongWx& ll) const