Ignore:
Timestamp:
05/04/17 15:14:37 (7 years ago)
Author:
mhnguyen
Message:

Fixing bug of using *_ref on chaining transformations.

+) Correct isEqual function of attribute_template
+) Modify isEqual function of CAttributeMap to make sure that some attributes are
excluded from comparasion

Test
+) On Curie
+) toy_cmpi6 works.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.cpp

    r1106 r1117  
    22472247  bool CDomain::isEqual(CDomain* obj) 
    22482248  { 
    2249     bool objEqual = SuperClass::isEqual(obj); 
     2249    vector<StdString> excludedAttr; 
     2250    excludedAttr.push_back("domain_ref"); 
     2251    bool objEqual = SuperClass::isEqual(obj, excludedAttr); 
    22502252    if (!objEqual) return objEqual; 
    22512253 
Note: See TracChangeset for help on using the changeset viewer.