changeset 15492:c9844b82945f

reformat interesting comment
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Fri, 05 Oct 2012 08:28:59 -0400
parents dbc6b6b18286
children f62c2c57b800
files libinterp/octave-value/ov-ch-mat.cc
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/octave-value/ov-ch-mat.cc
+++ b/libinterp/octave-value/ov-ch-mat.cc
@@ -152,12 +152,11 @@
   return retval;
 }
 
-// The C++ standard guarantees cctype defines functions, not macros
-// (and hence macros *CAN'T* be defined if only cctype is included)
-// so there's no need to f*ck around.
-// The exceptions are isascii and toascii, which are not C++.
-// Oddly enough, all those character functions are int (*) (int), even
-// in C++.  Wicked!
+// The C++ standard guarantees cctype defines functions, not macros (and
+// hence macros *CAN'T* be defined if only cctype is included) so
+// there's no need to fuck around. The exceptions are isascii and
+// toascii, which are not C++. Oddly enough, all those character
+// functions are int (*) (int), even in C++. Wicked!
 static inline int xisascii (int c)
 { return isascii (c); }