summaryrefslogtreecommitdiffstats
path: root/include/codemaker/exceptiontree.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/codemaker/exceptiontree.hxx')
-rw-r--r--include/codemaker/exceptiontree.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/codemaker/exceptiontree.hxx b/include/codemaker/exceptiontree.hxx
index 091ff034bf72..9c6b3b919b94 100644
--- a/include/codemaker/exceptiontree.hxx
+++ b/include/codemaker/exceptiontree.hxx
@@ -54,8 +54,8 @@ struct ExceptionTreeNode {
Children children;
private:
- ExceptionTreeNode(ExceptionTreeNode &) SAL_DELETED_FUNCTION;
- void operator =(ExceptionTreeNode) SAL_DELETED_FUNCTION;
+ ExceptionTreeNode(ExceptionTreeNode &) = delete;
+ void operator =(ExceptionTreeNode) = delete;
void clearChildren();
};
@@ -107,8 +107,8 @@ public:
ExceptionTreeNode const & getRoot() const { return m_root; }
private:
- ExceptionTree(ExceptionTree &) SAL_DELETED_FUNCTION;
- void operator =(const ExceptionTree&) SAL_DELETED_FUNCTION;
+ ExceptionTree(ExceptionTree &) = delete;
+ void operator =(const ExceptionTree&) = delete;
ExceptionTreeNode m_root;
};