Show
Ignore:
Timestamp:
09/16/09 14:47:36 (15 years ago)
Author:
smidl
Message:

replace assert_debug by assert in classes interacting with users (from_setting, set_parameters, validate)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/user_info.h

    r600 r620  
    321321 
    322322                root *typeless_instance = related_UI.new_instance(); 
    323                 bdm_assert_debug ( typeless_instance, "UI::new_instance failed" ); 
     323                bdm_assert ( typeless_instance, "UI::new_instance failed" ); 
    324324 
    325325                instance = dynamic_cast<T*> ( typeless_instance ); 
     
    351351                T *tmp_inst = 0; 
    352352                from_setting ( tmp_inst, element ); 
    353                 bdm_assert_debug ( tmp_inst, "UI::from_setting failed" ); 
     353                bdm_assert ( tmp_inst, "UI::from_setting failed" ); 
    354354                instance = tmp_inst; 
    355355        }