summaryrefslogtreecommitdiff
path: root/codemaker/source/cppumaker/includes.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'codemaker/source/cppumaker/includes.cxx')
-rw-r--r--codemaker/source/cppumaker/includes.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/codemaker/source/cppumaker/includes.cxx b/codemaker/source/cppumaker/includes.cxx
index 4c47c7e5be86..22c783085558 100644
--- a/codemaker/source/cppumaker/includes.cxx
+++ b/codemaker/source/cppumaker/includes.cxx
@@ -125,7 +125,7 @@ void Includes::add(OString const & entityName) {
namespace {
void dumpEmptyLineBeforeFirst(FileStream & out, bool * first) {
- OSL_ASSERT(first != 0);
+ OSL_ASSERT(first != nullptr);
if (*first) {
out << "\n";
*first = false;
@@ -135,7 +135,7 @@ void dumpEmptyLineBeforeFirst(FileStream & out, bool * first) {
}
void Includes::dump(FileStream & out, OUString const * companionHdl) {
- OSL_ASSERT(companionHdl == 0 || m_hpp);
+ OSL_ASSERT(companionHdl == nullptr || m_hpp);
if (!m_includeReference) {
for (Dependencies::Map::iterator i(m_map.begin()); i != m_map.end();
++i)