Mercurial > hg > octave-lyh
comparison src/gripes.h @ 10405:cc69a17ec801
remove integer math warnings
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 09 Mar 2010 08:06:30 +0100 |
parents | f3b65e1ae355 |
children | 7c573eb981eb |
comparison
equal
deleted
inserted
replaced
10404:b40a5fd3af41 | 10405:cc69a17ec801 |
---|---|
104 extern OCTINTERP_API void | 104 extern OCTINTERP_API void |
105 gripe_implicit_conversion (const std::string& id, const std::string& from, | 105 gripe_implicit_conversion (const std::string& id, const std::string& from, |
106 const std::string& to); | 106 const std::string& to); |
107 | 107 |
108 extern OCTINTERP_API void | 108 extern OCTINTERP_API void |
109 gripe_truncated_conversion (const char *srctype, const char *desttype); | |
110 | |
111 extern OCTINTERP_API void | |
112 gripe_binop_integer_math_truncated (const char *op, const char *type1, const char *type2); | |
113 | |
114 extern OCTINTERP_API void | |
115 gripe_native_integer_math_truncated (const char *fcn, const char *type); | |
116 | |
117 extern OCTINTERP_API void | |
118 gripe_unop_integer_math_truncated (const char *op, const char *type); | |
119 | |
120 extern OCTINTERP_API void | |
121 gripe_non_integer_conversion (const char *srctype, const char *desttype); | |
122 | |
123 extern OCTINTERP_API void | |
124 gripe_nan_conversion (const char *srctype, const char *desttype); | |
125 | |
126 extern OCTINTERP_API void | |
127 gripe_divide_by_zero (void); | 109 gripe_divide_by_zero (void); |
128 | 110 |
129 extern OCTINTERP_API void | 111 extern OCTINTERP_API void |
130 gripe_logical_conversion (void); | 112 gripe_logical_conversion (void); |
131 | 113 |