comparison src/oct-stream.cc @ 4661:12b6fbd57436

[project @ 2003-11-25 05:41:35 by jwe]
author jwe
date Tue, 25 Nov 2003 05:41:36 +0000
parents f7ce581b27fb
children bdc51b369a78
comparison
equal deleted inserted replaced
4660:5df5c9c5c166 4661:12b6fbd57436
1099 // Note that this specialization is only used for reading characters, not 1099 // Note that this specialization is only used for reading characters, not
1100 // character strings. See BEGIN_S_CONVERSION for details. 1100 // character strings. See BEGIN_S_CONVERSION for details.
1101 1101
1102 template<> 1102 template<>
1103 std::istream& 1103 std::istream&
1104 octave_scan<> (std::istream& is, const scanf_format_elt& fmt, char* valptr) 1104 octave_scan<> (std::istream& is, const scanf_format_elt& /* fmt */,
1105 char* valptr)
1105 { 1106 {
1106 return is >> valptr; 1107 return is >> valptr;
1107 } 1108 }
1108 1109
1109 template std::istream& 1110 template std::istream&