blob: b2af1b85973a93ea5674d7617def0d0319162603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff -Npaur libmxmlplus-0.9.2/src/mxml_attribute.cpp libmxmlplus-0.9.2-fixed/src/mxml_attribute.cpp
--- libmxmlplus-0.9.2/src/mxml_attribute.cpp 2004-01-11 14:32:45.000000000 +0100
+++ libmxmlplus-0.9.2-fixed/src/mxml_attribute.cpp 2004-08-12 04:36:40.696926344 +0200
@@ -32,7 +32,7 @@ Attribute::Attribute( std::istream &in,
m_value = "";
m_name = "";
- while ( iStatus < 6 && ( in >> chr ) ) {
+ while ( iStatus < 6 && ( in.get(chr) ) ) {
//std::cout << "LINE: " << line() << " POS: " << character() << std::endl;
switch ( iStatus ) {
// begin
|