[MOAB-dev] r3110 - MOAB/trunk

jvporter at wisc.edu jvporter at wisc.edu
Thu Aug 20 12:55:07 CDT 2009


Author: jvporter
Date: 2009-08-20 12:55:07 -0500 (Thu, 20 Aug 2009)
New Revision: 3110

Modified:
   MOAB/trunk/MBRange.hpp
Log:
Remove initial underscores from identifiers (fixes issue with MSVC)


Modified: MOAB/trunk/MBRange.hpp
===================================================================
--- MOAB/trunk/MBRange.hpp	2009-08-20 17:30:11 UTC (rev 3109)
+++ MOAB/trunk/MBRange.hpp	2009-08-20 17:55:07 UTC (rev 3110)
@@ -695,11 +695,11 @@
  
 public:
   //constructor
-  explicit mb_range_inserter(MBRange& __x) : container(&__x) {}
+  explicit mb_range_inserter(MBRange& x) : container(&x) {}
   mb_range_inserter&
-  operator=(const MBRange::value_type& __value) 
+  operator=(const MBRange::value_type& value) 
   {
-    container->insert(__value);
+    container->insert(value);
     return *this;
   }
 



More information about the moab-dev mailing list