summaryrefslogtreecommitdiff
path: root/idlc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc')
-rw-r--r--idlc/inc/idlc/astbasetype.hxx2
-rw-r--r--idlc/inc/idlc/astenum.hxx4
-rw-r--r--idlc/inc/idlc/astinterface.hxx2
-rw-r--r--idlc/inc/idlc/astmodule.hxx2
-rw-r--r--idlc/inc/idlc/astoperation.hxx2
-rw-r--r--idlc/inc/idlc/astsequence.hxx4
-rw-r--r--idlc/inc/idlc/astservice.hxx2
-rw-r--r--idlc/inc/idlc/aststruct.hxx4
-rw-r--r--idlc/inc/idlc/asttypedef.hxx4
9 files changed, 13 insertions, 13 deletions
diff --git a/idlc/inc/idlc/astbasetype.hxx b/idlc/inc/idlc/astbasetype.hxx
index f2603a72bf91..048e8bb42b1a 100644
--- a/idlc/inc/idlc/astbasetype.hxx
+++ b/idlc/inc/idlc/astbasetype.hxx
@@ -33,7 +33,7 @@ public:
virtual ~AstBaseType() {}
- virtual bool isUnsigned() const SAL_OVERRIDE {
+ virtual bool isUnsigned() const override {
switch (m_exprType) {
case ET_ushort:
case ET_ulong:
diff --git a/idlc/inc/idlc/astenum.hxx b/idlc/inc/idlc/astenum.hxx
index 91aeb9e09100..0bdf764905a6 100644
--- a/idlc/inc/idlc/astenum.hxx
+++ b/idlc/inc/idlc/astenum.hxx
@@ -36,9 +36,9 @@ public:
AstConstant* checkValue(AstExpression* pExpr);
- virtual bool dump(RegistryKey& rKey) SAL_OVERRIDE;
+ virtual bool dump(RegistryKey& rKey) override;
- virtual AstDeclaration* addDeclaration(AstDeclaration* pDecl) SAL_OVERRIDE;
+ virtual AstDeclaration* addDeclaration(AstDeclaration* pDecl) override;
private:
sal_Int32 m_enumValueCount;
};
diff --git a/idlc/inc/idlc/astinterface.hxx b/idlc/inc/idlc/astinterface.hxx
index 54ad235c7afd..b5804d58864b 100644
--- a/idlc/inc/idlc/astinterface.hxx
+++ b/idlc/inc/idlc/astinterface.hxx
@@ -77,7 +77,7 @@ public:
void forwardDefined(AstInterface const & def);
- virtual bool dump(RegistryKey& rKey) SAL_OVERRIDE;
+ virtual bool dump(RegistryKey& rKey) override;
private:
enum InterfaceKind {
diff --git a/idlc/inc/idlc/astmodule.hxx b/idlc/inc/idlc/astmodule.hxx
index 42faf29f3ce5..37bf965a7c05 100644
--- a/idlc/inc/idlc/astmodule.hxx
+++ b/idlc/inc/idlc/astmodule.hxx
@@ -36,7 +36,7 @@ public:
{}
virtual ~AstModule() {}
- virtual bool dump(RegistryKey& rKey) SAL_OVERRIDE;
+ virtual bool dump(RegistryKey& rKey) override;
};
#endif // INCLUDED_IDLC_INC_IDLC_ASTMODULE_HXX
diff --git a/idlc/inc/idlc/astoperation.hxx b/idlc/inc/idlc/astoperation.hxx
index e521557abaf2..88570918c162 100644
--- a/idlc/inc/idlc/astoperation.hxx
+++ b/idlc/inc/idlc/astoperation.hxx
@@ -48,7 +48,7 @@ public:
bool dumpBlob(typereg::Writer & rBlob, sal_uInt16 index);
// scope management
- virtual AstDeclaration* addDeclaration(AstDeclaration* pDecl) SAL_OVERRIDE;
+ virtual AstDeclaration* addDeclaration(AstDeclaration* pDecl) override;
private:
AstType const * m_pReturnType;
DeclList m_exceptions;
diff --git a/idlc/inc/idlc/astsequence.hxx b/idlc/inc/idlc/astsequence.hxx
index 5deda3673cc1..1169d8645f9c 100644
--- a/idlc/inc/idlc/astsequence.hxx
+++ b/idlc/inc/idlc/astsequence.hxx
@@ -38,10 +38,10 @@ public:
AstType const * getMemberType() const
{ return m_pMemberType; }
- virtual bool isUnsigned() const SAL_OVERRIDE
+ virtual bool isUnsigned() const override
{ return m_pMemberType != 0 && m_pMemberType->isUnsigned(); }
- virtual const sal_Char* getRelativName() const SAL_OVERRIDE;
+ virtual const sal_Char* getRelativName() const override;
private:
AstType const * m_pMemberType;
mutable OString* m_pRelativName;
diff --git a/idlc/inc/idlc/astservice.hxx b/idlc/inc/idlc/astservice.hxx
index e15fa4503709..8112db6a3652 100644
--- a/idlc/inc/idlc/astservice.hxx
+++ b/idlc/inc/idlc/astservice.hxx
@@ -40,7 +40,7 @@ public:
{}
virtual ~AstService() {}
- virtual bool dump(RegistryKey& rKey) SAL_OVERRIDE;
+ virtual bool dump(RegistryKey& rKey) override;
void setSingleInterfaceBasedService()
{ m_singleInterfaceBasedService = true; }
diff --git a/idlc/inc/idlc/aststruct.hxx b/idlc/inc/idlc/aststruct.hxx
index 1f0e878d836e..2a3330bf6114 100644
--- a/idlc/inc/idlc/aststruct.hxx
+++ b/idlc/inc/idlc/aststruct.hxx
@@ -45,9 +45,9 @@ public:
AstDeclaration const * findTypeParameter(OString const & name) const;
- virtual bool isType() const SAL_OVERRIDE;
+ virtual bool isType() const override;
- virtual bool dump(RegistryKey& rKey) SAL_OVERRIDE;
+ virtual bool dump(RegistryKey& rKey) override;
private:
AstStruct const* m_pBaseType;
DeclList m_typeParameters;
diff --git a/idlc/inc/idlc/asttypedef.hxx b/idlc/inc/idlc/asttypedef.hxx
index 00665895b14a..bc9c79d5d395 100644
--- a/idlc/inc/idlc/asttypedef.hxx
+++ b/idlc/inc/idlc/asttypedef.hxx
@@ -33,10 +33,10 @@ public:
AstType const * getBaseType() const
{ return m_pBaseType; }
- virtual bool isUnsigned() const SAL_OVERRIDE
+ virtual bool isUnsigned() const override
{ return m_pBaseType != 0 && m_pBaseType->isUnsigned(); }
- virtual bool dump(RegistryKey& rKey) SAL_OVERRIDE;
+ virtual bool dump(RegistryKey& rKey) override;
private:
AstType const * m_pBaseType;
};