changeset 21449:65e24ba4ca2d

* oct-locbuf.h: Style fix.
author John W. Eaton <jwe@octave.org>
date Mon, 14 Mar 2016 23:12:57 -0400
parents 06a2f9245a11
children 2868abbc88eb
files liboctave/util/oct-locbuf.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/util/oct-locbuf.h	Mon Mar 14 23:12:22 2016 -0400
+++ b/liboctave/util/oct-locbuf.h	Mon Mar 14 23:12:57 2016 -0400
@@ -42,7 +42,9 @@
     if (size)
       data = new T [size];
   }
+
   ~octave_local_buffer (void) { delete [] data; }
+
   operator T *() const { return data; }
 
 private: