Changeset 767

Show
Ignore:
Timestamp:
01/11/10 23:01:37 (14 years ago)
Author:
mido
Message:

a few details corrected

Location:
applications
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/mex/merger.cpp

    r761 r767  
    6767                Merger->set_support ( *RecSup ); 
    6868        }  
    69         } catch (UIException &e) { 
     69        } catch (UIException) { 
    7070                shared_ptr<discrete_support> DisSup = UI::build<discrete_support> ( Cfg, "Support", UI::optional ); 
    7171                if (DisSup){ 
  • applications/pmsm/filters.h

    r706 r767  
    5656                PMSMlin ( MPFpmsm &p0 ) :p ( p0 ) {}; 
    5757                PMSMlin ( const PMSMlin &P0 ) : KalmanFull ( P0 ), p ( P0.p ), thm ( P0.thm ) {} 
    58                 BM* _copy_() const {return new PMSMlin ( *this );} 
     58                 
     59                PMSMlin* _copy() const { 
     60                        return new PMSMlin ( *this ); 
     61                } 
    5962 
    6063                void fillA() { 
     
    177180                                if ( ind ( i ) != i ) {//replace the current Bm by a new one 
    178181                                        delete BMs ( i ); 
    179                                         BMs ( i ) = BMs ( ind ( i ) )->_copy_(); //copy constructor 
     182                                        BMs ( i ) = BMs ( ind ( i ) )->_copy(); //copy constructor 
    180183                                } 
    181184                        };