Mercurial > hg > octave-lyh
annotate libinterp/operators/op-str-s.cc @ 17535:c12c688a35ed default tip lyh
Fix warnings
author | LYH <lyh.kernel@gmail.com> |
---|---|
date | Fri, 27 Sep 2013 17:43:27 +0800 |
parents | 2fc554ffbc28 |
children |
rev | line source |
---|---|
4488 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 2003-2012 John W. Eaton |
4488 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4488 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4488 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "gripes.h" | |
28 #include "oct-obj.h" | |
29 #include "ov.h" | |
30 #include "ov-scalar.h" | |
31 #include "ov-str-mat.h" | |
32 #include "ov-typeinfo.h" | |
33 #include "ops.h" | |
34 | |
35 DEFASSIGNOP (assign, char_matrix_str, octave_scalar) | |
36 { | |
37 CAST_BINOP_ARGS (octave_char_matrix_str&, const octave_scalar&); | |
38 | |
5279 | 39 octave_value tmp |
40 = v2.convert_to_str_internal (false, false, | |
9931
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
41 a1.is_sq_string () ? '\'' : '"'); |
4488 | 42 |
43 if (! error_state) | |
10852
47e013327758
fix bug in n-dimensional character assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9933
diff
changeset
|
44 v1.assign (idx, tmp.char_array_value ()); |
4488 | 45 |
46 return octave_value (); | |
47 } | |
48 | |
5533 | 49 DEFNDCHARCATOP_FN (str_s, char_matrix_str, scalar, concat) |
4915 | 50 |
5533 | 51 DEFNDCHARCATOP_FN (s_str, scalar, char_matrix_str, concat) |
4915 | 52 |
4488 | 53 void |
54 install_str_s_ops (void) | |
55 { | |
56 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_scalar, assign); | |
5279 | 57 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_scalar, assign); |
4915 | 58 |
59 INSTALL_CATOP (octave_char_matrix_str, octave_scalar, str_s); | |
5279 | 60 INSTALL_CATOP (octave_char_matrix_sq_str, octave_scalar, str_s); |
61 | |
4915 | 62 INSTALL_CATOP (octave_scalar, octave_char_matrix_str, s_str); |
5279 | 63 INSTALL_CATOP (octave_scalar, octave_char_matrix_sq_str, s_str); |
4488 | 64 } |