From: Aleksei Vereshchagin Date: Mon, 11 Dec 2017 17:09:22 +0000 (+0300) Subject: EventChannel class uses assert() instead of _ASSERTE() X-Git-Tag: submit/tizen/20180619.075036~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1da424616db319f2b084ba258b75b01a4d5fdfb;p=sdk%2Ftools%2Fcoreprofiler.git EventChannel class uses assert() instead of _ASSERTE() --- diff --git a/src/trace/eventchannel.h b/src/trace/eventchannel.h index ed407e5..1d2644d 100644 --- a/src/trace/eventchannel.h +++ b/src/trace/eventchannel.h @@ -219,7 +219,7 @@ public: void Allocation(ObjectInfo &objInfo, UINT_PTR ip = 0) noexcept { - _ASSERTE(objInfo.type != nullptr); + assert(objInfo.type != nullptr); AllocInfo &allocInfo = m_currentState.allocIpTable[objInfo.type->internalId.id][ip]; allocInfo.allocCount++;