Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 124241 | Differences between
and this patch

Collapse All | Expand All

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

Return to bug 124241