Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 134094
Collapse All | Expand All

(-)Utilities/vxl/core/vnl/vnl_matrix_fixed_ref.h (-1 / +1 lines)
Lines 485-491 Link Here
485
  //:
485
  //:
486
  vnl_matrix_fixed_ref const& operator/= (T s) const
486
  vnl_matrix_fixed_ref const& operator/= (T s) const
487
  {
487
  {
488
    div( data_block(), s, data_block() ); return *this;
488
    vnl_matrix_fixed<T, num_rows, num_cols>::div( data_block(), s, data_block() ); return *this;
489
  }
489
  }
490
490
491
  //:
491
  //:
(-)Utilities/vxl/core/vnl/vnl_vector_fixed_ref.h (-1 / +1 lines)
Lines 384-390 Link Here
384
384
385
  //:
385
  //:
386
  vnl_vector_fixed_ref<T,n> const & operator/=( T s ) const {
386
  vnl_vector_fixed_ref<T,n> const & operator/=( T s ) const {
387
    div( data_block(), s, data_block() ); return *this;
387
    vnl_vector_fixed<T,n>::div( data_block(), s, data_block() ); return *this;
388
  }
388
  }
389
389
390
  //:
390
  //:

Return to bug 134094