summaryrefslogtreecommitdiff
path: root/cppu/source/uno/eq.hxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 08:03:04 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 08:03:13 +1000
commit8dd791560b08525eec3853029fc9f4e1c49f74de (patch)
tree5ad6679757218c4e6b940083a483d93d54807371 /cppu/source/uno/eq.hxx
parentba49d9f20a3edb47eb72007c3023427cb4ec8322 (diff)
tdf#43157: convert rest of cppu from OSL_ASSERT to assert
Change-Id: I32684aaf33a798484d68bb8c3689cae542a8d608
Diffstat (limited to 'cppu/source/uno/eq.hxx')
-rw-r--r--cppu/source/uno/eq.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/uno/eq.hxx b/cppu/source/uno/eq.hxx
index 008a204a104e..3e043fdcc328 100644
--- a/cppu/source/uno/eq.hxx
+++ b/cppu/source/uno/eq.hxx
@@ -252,7 +252,7 @@ inline bool _equalSequence(
return true;
}
default:
- OSL_ASSERT(false);
+ assert(false);
return false;
}
}
@@ -580,7 +580,7 @@ inline bool _equalData(
return _equalObject( *static_cast<void **>(pDest), *static_cast<void **>(pSource), queryInterface, release );
break;
default:
- OSL_ASSERT(false);
+ assert(false);
break;
}
return false;