Implementation of 1-Wire with added Alarm Search Functionality

Dependents:   Max32630_One_Wire_Interface

Revision:
43:23017dcd2ec3
Parent:
33:a4c015046956
Child:
49:36954b62f503
--- a/array.hpp	Wed Apr 06 04:30:37 2016 +0000
+++ b/array.hpp	Wed Apr 06 08:49:27 2016 -0500
@@ -17,8 +17,11 @@
 public:
   const array<T, N> & operator=(const array<T, N> & rhs)
   {
+    if (this != &rhs)
+    {
       std::memcpy(this->m_buffer, rhs.m_buffer, N * sizeof(T));
-      return rhs;
+    }
+    return rhs;
   }
   
   bool operator==(const array<T, N> & rhs) const