diff liboctave/DiagArray2.h @ 8918:f5408862892f

Consistently use element_type in the array classes.
author Jason Riedy <jason@acm.org>
date Fri, 06 Mar 2009 10:27:30 -0500
parents 937921654627
children 66970dd627f6
line wrap: on
line diff
--- a/liboctave/DiagArray2.h
+++ b/liboctave/DiagArray2.h
@@ -94,7 +94,7 @@
 
 public:
 
-  typedef T element_type;
+  using Array<T>::element_type;
 
   DiagArray2 (void) 
     : Array<T> (), d1 (0), d2 (0) { }