diff liboctave/util/lo-array-errwarn.h @ 21134:2e5c1f766ac9

provide replacement hints for deprecated C++ functions * oct-conf-post.in.h (OCTAVE_DEPRECATED): Accept message argument. * error.h, errwarn.h, gripes.h, symtab.h, variables.h, * ov-base-sparse.h, ov-base.h, ov.h, Array.h, DiagArray2.h, * PermMatrix.h, Range.h, Sparse.h, dSparse.h, lo-array-errwarn.h, * lo-array-gripes.h, unwind-prot.h: Change all uses of OCTAVE_DEPRECATED.
author John W. Eaton <jwe@octave.org>
date Fri, 22 Jan 2016 12:15:12 -0500
parents 358aa7fcbd33
children 1473547f50f5
line wrap: on
line diff
--- a/liboctave/util/lo-array-errwarn.h	Fri Jan 22 12:12:56 2016 -0500
+++ b/liboctave/util/lo-array-errwarn.h	Fri Jan 22 12:15:12 2016 -0500
@@ -99,59 +99,57 @@
 
 };
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_nan_to_logical_conversion (void);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_nan_to_logical_conversion (void);
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_nan_to_character_conversion (void);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_nan_to_character_conversion (void);
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_nonconformant (const char *op,
-                        octave_idx_type op1_len,
-                        octave_idx_type op2_len);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_nonconformant (const char *op, octave_idx_type op1_len,
+                   octave_idx_type op2_len);
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_nonconformant (const char *op,
-                        octave_idx_type op1_nr, octave_idx_type op1_nc,
-                        octave_idx_type op2_nr, octave_idx_type op2_nc);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_nonconformant (const char *op,
+                   octave_idx_type op1_nr, octave_idx_type op1_nc,
+                   octave_idx_type op2_nr, octave_idx_type op2_nc);
 
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_nonconformant (const char *op, const dim_vector& op1_dims,
-                        const dim_vector& op2_dims);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_nonconformant (const char *op,
+                   const dim_vector& op1_dims, const dim_vector& op2_dims);
+
+OCTAVE_NORETURN OCTAVE_API extern void
+err_index_out_of_range (int nd, int dim, octave_idx_type iext,
+                        octave_idx_type ext, const dim_vector& d);
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_index_out_of_range (int nd, int dim,
-                             octave_idx_type iext, octave_idx_type ext,
-                             const dim_vector& d);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_index_out_of_range (int nd, int dim, octave_idx_type iext,
+                        octave_idx_type ext);
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_index_out_of_range (int nd, int dim,
-                             octave_idx_type iext, octave_idx_type ext);
-
-OCTAVE_NORETURN OCTAVE_API extern
-void err_del_index_out_of_range (bool is1d, octave_idx_type iext,
-                                 octave_idx_type ext);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_del_index_out_of_range (bool is1d, octave_idx_type iext,
+                            octave_idx_type ext);
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_invalid_index (double, octave_idx_type nd = 0,
-                        octave_idx_type dim = 0,
-                        const std::string& var = "");
+OCTAVE_NORETURN OCTAVE_API extern void
+err_invalid_index (double, octave_idx_type nd = 0,
+                   octave_idx_type dim = 0,
+                   const std::string& var = "");
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_invalid_index (octave_idx_type n, octave_idx_type nd = 0,
-                        octave_idx_type dim = 0,
-                        const std::string& var = "");
+OCTAVE_NORETURN OCTAVE_API extern void
+err_invalid_index (octave_idx_type n, octave_idx_type nd = 0,
+                   octave_idx_type dim = 0,
+                   const std::string& var = "");
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_invalid_index (const std::string& idx, octave_idx_type nd = 0,
-                        octave_idx_type dim = 0,
-                        const std::string& var = "");
+OCTAVE_NORETURN OCTAVE_API extern void
+err_invalid_index (const std::string& idx, octave_idx_type nd = 0,
+                   octave_idx_type dim = 0,
+                   const std::string& var = "");
 
-OCTAVE_NORETURN OCTAVE_API extern
-void err_invalid_resize (void);
+OCTAVE_NORETURN OCTAVE_API extern void
+err_invalid_resize (void);
 
-OCTAVE_API extern
-void warn_singular_matrix (double rcond = 0.0);
+OCTAVE_API extern void
+warn_singular_matrix (double rcond = 0.0);
 
 #endif