summaryrefslogtreecommitdiff
path: root/ACE/ACEXML
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-08-03 16:50:54 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-08-03 16:50:54 +0000
commit9a5a5c58995d0c45b2361d39398aa1d3b8be6ff3 (patch)
tree399c94069ff8b65a8f3e874e47646feeb46c2366 /ACE/ACEXML
parent7b0e53bd0876fc303982c4662ffd34db0fe9a4d8 (diff)
downloadATCD-9a5a5c58995d0c45b2361d39398aa1d3b8be6ff3.tar.gz
Tue Aug 3 16:50:57 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* common/DTD_Manager.h: Fixed compile error * common/SAXExceptions.inl: Fixed fuzz
Diffstat (limited to 'ACE/ACEXML')
-rw-r--r--ACE/ACEXML/ChangeLog8
-rw-r--r--ACE/ACEXML/common/DTD_Manager.h2
-rw-r--r--ACE/ACEXML/common/SAXExceptions.inl8
3 files changed, 13 insertions, 5 deletions
diff --git a/ACE/ACEXML/ChangeLog b/ACE/ACEXML/ChangeLog
index eb9ca06e73a..cf9591f72b8 100644
--- a/ACE/ACEXML/ChangeLog
+++ b/ACE/ACEXML/ChangeLog
@@ -1,3 +1,11 @@
+Tue Aug 3 16:50:57 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * common/DTD_Manager.h:
+ Fixed compile error
+
+ * common/SAXExceptions.inl:
+ Fixed fuzz
+
Tue Aug 3 11:58:06 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* common/Makefile.am:
diff --git a/ACE/ACEXML/common/DTD_Manager.h b/ACE/ACEXML/common/DTD_Manager.h
index ba99cbf480b..2b4130eb298 100644
--- a/ACE/ACEXML/common/DTD_Manager.h
+++ b/ACE/ACEXML/common/DTD_Manager.h
@@ -73,7 +73,7 @@ public:
*/
virtual ACEXML_Validator *getValidator (const ACEXML_Char *namespaceURI,
const ACEXML_Char *localName,
- const ACEXML_Char *qName ACEXML_ENV_ARG_DECL) = 0;
+ const ACEXML_Char *qName) = 0;
};
diff --git a/ACE/ACEXML/common/SAXExceptions.inl b/ACE/ACEXML/common/SAXExceptions.inl
index fd2be41cf52..8145b2d7ed4 100644
--- a/ACE/ACEXML/common/SAXExceptions.inl
+++ b/ACE/ACEXML/common/SAXExceptions.inl
@@ -11,25 +11,25 @@ ACEXML_SAXException::message (void) const
ACEXML_INLINE void
ACEXML_SAXException::_raise (void)
{
- throw (*this);
+ throw *this;
}
ACEXML_INLINE void
ACEXML_SAXNotSupportedException::_raise (void)
{
- throw (*this);
+ throw *this;
}
ACEXML_INLINE void
ACEXML_SAXNotRecognizedException::_raise (void)
{
- throw (*this);
+ throw *this;
}
ACEXML_INLINE void
ACEXML_SAXParseException::_raise (void)
{
- throw (*this);
+ throw *this;
}
ACEXML_INLINE const ACEXML_Char *