mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:36:11 +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
|
#pragma once
|
||||||
#include "atlbase.h"
|
#include "atlbase.h"
|
||||||
|
#include "atlexcept.h"
|
||||||
|
|
||||||
struct __POSITION
|
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));
|
CAtlPlex* Block = CAtlPlex::Create(m_Blocks, m_BlockSize, sizeof(CNode));
|
||||||
if (Block == NULL)
|
if (Block == NULL)
|
||||||
{
|
{
|
||||||
throw(E_OUTOFMEMORY);
|
AtlThrowImp(E_OUTOFMEMORY);
|
||||||
}
|
}
|
||||||
|
|
||||||
CNode* Node = (CNode*)Block->GetData();
|
CNode* Node = (CNode*)Block->GetData();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue