# HG changeset patch # User Kai T. Ohlhus # Date 1393230655 -3600 # Mon Feb 24 09:30:55 2014 +0100 # Node ID 7edc5036a0cf61ba614ca47757cd1c09d9ed5ae5 # Parent 932aca9a7c57140511065ecc9afcd561c8a5109c ov-perm.cc: Removed unused local type definitions to avoid unnecessary warnings. diff -r 932aca9a7c57 -r 7edc5036a0cf libinterp/octave-value/ov-perm.cc --- a/libinterp/octave-value/ov-perm.cc Sat Feb 22 19:56:17 2014 -0500 +++ b/libinterp/octave-value/ov-perm.cc Mon Feb 24 09:30:55 2014 +0100 @@ -260,8 +260,6 @@ bool octave_perm_matrix::save_ascii (std::ostream& os) { - typedef octave_int idx_int_type; - os << "# size: " << matrix.rows () << "\n"; os << "# orient: " << (matrix.is_col_perm () ? 'c' : 'r') << '\n'; @@ -277,7 +275,6 @@ bool octave_perm_matrix::load_ascii (std::istream& is) { - typedef octave_int idx_int_type; octave_idx_type n; bool success = true; char orient;