-
- Downloads
Apply 3 suggestion(s) to 3 file(s)
parent
585e03c2
No related branches found
No related tags found
Showing
- GeoModelCore/GeoModelKernel/GeoModelKernel/GeoAlignableTransform.h 0 additions, 2 deletions...ore/GeoModelKernel/GeoModelKernel/GeoAlignableTransform.h
- GeoModelCore/GeoModelKernel/GeoModelKernel/GeoTransform.h 0 additions, 2 deletionsGeoModelCore/GeoModelKernel/GeoModelKernel/GeoTransform.h
- GeoModelCore/GeoModelKernel/src/GeoAlignableTransform.cxx 1 addition, 1 deletionGeoModelCore/GeoModelKernel/src/GeoAlignableTransform.cxx
-
The old code was checking that the element is not in the uniqueParents list
if(uniqueParents.find(parent)==uniqueParents.end()) {
while in the new version I accidentially, put first
if(!uniqueParents.insert(parent).second) {
which is a invert of the logic. Indeed, I fixed a logical typo.
Please register or sign in to comment