Updated the XML module to include the location for C++ exceptions in source code for debug builds.

This commit is contained in:
Sandu Liviu Catalin
2016-03-23 00:26:35 +02:00
parent a8edb37733
commit 3a06fe6048
7 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -150,7 +150,7 @@ public:
void SetName(CSStr name)
{
if (!m_Attr.set_name(name))
SqThrowF("Unable to set xml attribute name");
STHROWF("Unable to set xml attribute name");
}
/* --------------------------------------------------------------------------------------------
@@ -175,7 +175,7 @@ public:
void SetValue(CSStr name)
{
if (!m_Attr.set_value(name))
SqThrowF("Unable to set xml attribute value");
STHROWF("Unable to set xml attribute value");
}
/* --------------------------------------------------------------------------------------------