summaryrefslogtreecommitdiff
path: root/unoxml/source/rdf/librdf_repository.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/rdf/librdf_repository.cxx')
-rw-r--r--unoxml/source/rdf/librdf_repository.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index d6b0a41e029d..6ed9e552cef6 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -96,7 +96,7 @@ const char s_nsOOo [] = "http://openoffice.org/2004/office/rdfa/";
//FIXME: this approach is not ideal. can we use blank nodes instead?
-bool isInternalContext(librdf_node *i_pNode) throw ()
+bool isInternalContext(librdf_node *i_pNode) noexcept
{
OSL_ENSURE(i_pNode, "isInternalContext: context null");
OSL_ENSURE(librdf_node_is_resource(i_pNode),
@@ -638,7 +638,7 @@ class NodeArray : private std::vector<librdf_node*>
public:
NodeArray(int cnt) : std::vector<librdf_node*>(cnt) {}
- ~NodeArray() throw ()
+ ~NodeArray() noexcept
{
std::for_each(begin(), end(), safe_librdf_free_node);
}