[Mobies-commit] [commit] r4401 - UDM/trunk/include

ksmyth at svn.isis.vanderbilt.edu ksmyth at svn.isis.vanderbilt.edu
Mon Nov 20 11:12:26 CST 2017


Author: ksmyth
Date: Mon Nov 20 11:12:26 2017
New Revision: 4401

Log:
Fix invalid cast for bool ArrAttrItem

Modified:
   UDM/trunk/include/UdmBase.h

Modified: UDM/trunk/include/UdmBase.h
==============================================================================
--- UDM/trunk/include/UdmBase.h	Mon Nov 20 11:12:23 2017	(r4400)
+++ UDM/trunk/include/UdmBase.h	Mon Nov 20 11:12:26 2017	(r4401)
@@ -832,8 +832,8 @@
 			while (array.size() <=index)
 				array.push_back(CLASS());
 
-			CLASS & i = (CLASS&)array.at(index);
-			i = a;
+			array.at(index) = a;
+
 			set();
 			return *this;
 		};


More information about the Mobies-commit mailing list