diff libinterp/octave-value/ov-base.cc @ 23718:251cb33c6570

style fixes for initializer lists * symtab.cc, ov-base.cc, ov-usr-fcn.cc: Use spaces between values and braces in initializer lists.
author John W. Eaton <jwe@octave.org>
date Thu, 29 Jun 2017 02:40:21 -0400
parents b89b86d741e6
children 980f39c3ab90
line wrap: on
line diff
--- a/libinterp/octave-value/ov-base.cc	Thu Jun 29 02:33:19 2017 -0400
+++ b/libinterp/octave-value/ov-base.cc	Thu Jun 29 02:40:21 2017 -0400
@@ -1169,9 +1169,9 @@
 octave_base_value::dump (void) const
 {
   std::map<std::string, octave_value> m
-    = {{"class", this->class_name ()},
-       {"type", this->type_name ()},
-       {"dims", this->dims().as_array ()}};
+    = {{ "class", this->class_name () },
+       { "type", this->type_name () },
+       { "dims", this->dims().as_array () }};
 
   return octave_value (m);
 }