Show
Ignore:
Timestamp:
04/06/08 23:03:34 (8 months ago)
Author:
vossg
Message:

changed: adjusted names
removed: detail void casts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/FieldContainer/Fields/PointerFields/OSGParentPointerSField.inl

    r1122 r1135  
    5858        void) const 
    5959{ 
    60     return detail::void_cast<value_type>(AccessHandler::validate(*_pPtrValue)); 
     60    return AccessHandler::validate(*_pPtrValue); 
    6161} 
    6262 
     
    6565    ParentSFieldConstReferenceProxy<ObjectTypeT>::operator->(void) const 
    6666{ 
    67     return detail::void_cast<value_type>(AccessHandler::validate(*_pPtrValue)); 
     67    return AccessHandler::validate(*_pPtrValue); 
    6868} 
    6969 
     
    7272    ParentSFieldConstReferenceProxy<ObjectTypeT>::getPtr(void) const 
    7373{ 
    74     return detail::void_cast<value_type>(AccessHandler::validate(*_pPtrValue)); 
     74    return AccessHandler::validate(*_pPtrValue); 
    7575} 
    7676