summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-10-24 06:53:49 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-10-24 06:53:49 +0000
commit9341853540c4dfda33b28b1eb1af19b4ada5e97f (patch)
tree8170ac52b26c2d06f8f7998136e1a077c97d40f5
parent74bd14e5e7d062f40a5602bb684686e380b87d59 (diff)
downloadATCD-9341853540c4dfda33b28b1eb1af19b4ada5e97f.tar.gz
ChangeLogTag: Thu Oct 24 01:52:46 2002 Krishnakumar B <kitty@cs.wustl.edu>
-rw-r--r--ACEXML/parser/parser/Parser.cpp4
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-03a5
3 files changed, 12 insertions, 2 deletions
diff --git a/ACEXML/parser/parser/Parser.cpp b/ACEXML/parser/parser/Parser.cpp
index f4ed69a3dbf..3dd7cba6216 100644
--- a/ACEXML/parser/parser/Parser.cpp
+++ b/ACEXML/parser/parser/Parser.cpp
@@ -1880,7 +1880,7 @@ ACEXML_Parser::get_quoted_string (ACEXML_Char *&str)
const ACEXML_String *replace = 0;
ACEXML_String charval;
ACEXML_Char buffer[6];
-
+ size_t i = 0;
switch (ch)
{
case '&':
@@ -1904,7 +1904,7 @@ ACEXML_Parser::get_quoted_string (ACEXML_Char *&str)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Undefined reference\n")));
return -1;
}
- for (size_t i = 0; i < replace->length (); ++i)
+ for (i = 0; i < replace->length (); ++i)
this->obstack_.grow ((*replace)[i]);
// handle reference here.
break;
diff --git a/ChangeLog b/ChangeLog
index 2b9a3d469ce..8e257b62e0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 24 01:52:46 2002 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * ACEXML\parser\parser\Parser.cpp: Moved out the declaration of
+ variables outside case labels. MSVC doesn't like it.
+
Wed Oct 23 22:24:59 2002 Krishnakumar B <kitty@cs.wustl.edu>
* ACEXML/parser/parser/Parser.cpp: Fixed a stupid thinko in array
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 2b9a3d469ce..8e257b62e0e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Thu Oct 24 01:52:46 2002 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * ACEXML\parser\parser\Parser.cpp: Moved out the declaration of
+ variables outside case labels. MSVC doesn't like it.
+
Wed Oct 23 22:24:59 2002 Krishnakumar B <kitty@cs.wustl.edu>
* ACEXML/parser/parser/Parser.cpp: Fixed a stupid thinko in array