diff src/gripes.cc @ 10315:57a59eae83cc

untabify src C++ source files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:41:46 -0500
parents cd96d29c5efa
children cc69a17ec801
line wrap: on
line diff
--- a/src/gripes.cc	Thu Feb 11 12:23:32 2010 -0500
+++ b/src/gripes.cc	Thu Feb 11 12:41:46 2010 -0500
@@ -65,7 +65,7 @@
 gripe_nonconformant (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2)
 {
   error ("nonconformant matrices (op1 is %dx%d, op2 is %dx%d)",
-	 r1, c1, r2, c2);
+         r1, c1, r2, c2);
 }
 
 void
@@ -148,7 +148,7 @@
 
 void
 gripe_wrong_type_arg (const char *name, const octave_value& tc,
-		      bool is_error)
+                      bool is_error)
 {
   std::string type = tc.type_name ();
 
@@ -157,7 +157,7 @@
 
 void
 gripe_wrong_type_arg (const std::string& name, const octave_value& tc,
-		      bool is_error)
+                      bool is_error)
 {
   gripe_wrong_type_arg (name.c_str (), tc, is_error);
 }
@@ -184,11 +184,11 @@
 
 void
 gripe_implicit_conversion (const std::string& id,
-			   const std::string& from, const std::string& to)
+                           const std::string& from, const std::string& to)
 {
   warning_with_id (id.c_str (),
-		   "implicit conversion from %s to %s",
-		   from.c_str (), to.c_str ());
+                   "implicit conversion from %s to %s",
+                   from.c_str (), to.c_str ());
 }
 
 void
@@ -201,7 +201,7 @@
 gripe_logical_conversion (void)
 {
   warning_with_id ("Octave:logical-conversion",
-		   "value not equal to 1 or 0 converted to logical 1");
+                   "value not equal to 1 or 0 converted to logical 1");
 }
 
 void