mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[ATL] Fixed atlcoll.h ignoring _ATL_NO_EXCEPTIONS
svn path=/branches/GSoC_2017/rapps/; revision=75823
This commit is contained in:
parent
79ee865810
commit
fa2ddd2f4c
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
#pragma once
|
||||
#include "atlbase.h"
|
||||
|
||||
#include "atlexcept.h"
|
||||
|
||||
struct __POSITION
|
||||
{
|
||||
|
@ -531,7 +531,7 @@ typename CAtlList<E, ETraits>::CNode* CAtlList< E, ETraits>::GetFreeNode()
|
|||
CAtlPlex* Block = CAtlPlex::Create(m_Blocks, m_BlockSize, sizeof(CNode));
|
||||
if (Block == NULL)
|
||||
{
|
||||
throw(E_OUTOFMEMORY);
|
||||
AtlThrowImp(E_OUTOFMEMORY);
|
||||
}
|
||||
|
||||
CNode* Node = (CNode*)Block->GetData();
|
||||
|
|
Loading…
Reference in a new issue