changeset 24476:bb8ae4e9e09d

* oct-stream.cc: Fix whitespace in some macro definitions.
author John W. Eaton <jwe@octave.org>
date Wed, 27 Dec 2017 15:40:14 -0500
parents 8cb985e362f3
children e8cb11de9383
files libinterp/corefcn/oct-stream.cc
diffstat 1 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/oct-stream.cc	Wed Dec 27 20:46:11 2017 +0100
+++ b/libinterp/corefcn/oct-stream.cc	Wed Dec 27 15:40:14 2017 -0500
@@ -4424,22 +4424,22 @@
     }                                                                   \
   while (0)
 
-#define DO_PCT_CONVERSION()                     \
-  do                                            \
-    {                                           \
-  int c = is.get ();                            \
-                                                \
-  if (c != std::istream::traits_type::eof ())   \
-    {                                           \
-  if (c != '%')                                 \
-    {                                           \
-  is.putback (c);                               \
-  is.setstate (std::ios::failbit);              \
-}                                               \
-}                                               \
-  else                                          \
-    is.setstate (std::ios::failbit);            \
-}                                               \
+#define DO_PCT_CONVERSION()                             \
+  do                                                    \
+    {                                                   \
+      int c = is.get ();                                \
+                                                        \
+      if (c != std::istream::traits_type::eof ())       \
+        {                                               \
+          if (c != '%')                                 \
+            {                                           \
+              is.putback (c);                           \
+              is.setstate (std::ios::failbit);          \
+            }                                           \
+        }                                               \
+      else                                              \
+        is.setstate (std::ios::failbit);                \
+    }                                                   \
   while (0)
 
 #define BEGIN_C_CONVERSION()                                            \
@@ -7065,7 +7065,7 @@
                  octave_idx_type skip,                                  \
                  mach_info::float_format flt_fmt)
 
-    INSTANTIATE_WRITE (octave_int8);
+  INSTANTIATE_WRITE (octave_int8);
   INSTANTIATE_WRITE (octave_uint8);
   INSTANTIATE_WRITE (octave_int16);
   INSTANTIATE_WRITE (octave_uint16);