From f56bb35301836e56582a575a75864392a0177875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20P=2E=20Tjern=C3=B8?= Date: Mon, 2 Dec 2013 19:31:46 -0800 Subject: Fix line endings. WHAMMY. --- mp/src/public/tools/bonelist.cpp | 142 +++++++++++++++++++-------------------- 1 file changed, 71 insertions(+), 71 deletions(-) (limited to 'mp/src/public/tools/bonelist.cpp') diff --git a/mp/src/public/tools/bonelist.cpp b/mp/src/public/tools/bonelist.cpp index 9e8999e0..be772a95 100644 --- a/mp/src/public/tools/bonelist.cpp +++ b/mp/src/public/tools/bonelist.cpp @@ -1,72 +1,72 @@ -//========= Copyright Valve Corporation, All rights reserved. ============// -// -// Purpose: -// -//============================================================================= - -#include "cbase.h" -#include "bonelist.h" - -// memdbgon must be the last include file in a .cpp file!!! -#include "tier0/memdbgon.h" - -CBoneList::CBoneList() -{ - m_bShouldDelete = false; - m_nBones = 0; - Q_memset( m_vecPos, 0, sizeof( m_vecPos ) ); - Q_memset( m_quatRot, 0, sizeof( m_quatRot ) ); -} - -void CBoneList::Release() -{ - if (m_bShouldDelete ) - { - delete this; - } - else - { - Warning( "Called Release() on CBoneList not allocated via Alloc() method\n" ); - } -} - -CBoneList *CBoneList::Alloc() -{ - CBoneList *newList = new CBoneList; - Assert( newList ); - if ( newList ) - { - newList->m_bShouldDelete = true; - } - return newList; -} - -CFlexList::CFlexList() -{ - m_bShouldDelete = false; - m_nNumFlexes = 0; - Q_memset( m_flexWeights, 0, sizeof( m_flexWeights ) ); -} - -void CFlexList::Release() -{ - if (m_bShouldDelete ) - { - delete this; - } - else - { - Warning( "Called Release() on CFlexList not allocated via Alloc() method\n" ); - } -} - -CFlexList *CFlexList::Alloc() -{ - CFlexList *newList = new CFlexList; - Assert( newList ); - if ( newList ) - { - newList->m_bShouldDelete = true; - } - return newList; +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= + +#include "cbase.h" +#include "bonelist.h" + +// memdbgon must be the last include file in a .cpp file!!! +#include "tier0/memdbgon.h" + +CBoneList::CBoneList() +{ + m_bShouldDelete = false; + m_nBones = 0; + Q_memset( m_vecPos, 0, sizeof( m_vecPos ) ); + Q_memset( m_quatRot, 0, sizeof( m_quatRot ) ); +} + +void CBoneList::Release() +{ + if (m_bShouldDelete ) + { + delete this; + } + else + { + Warning( "Called Release() on CBoneList not allocated via Alloc() method\n" ); + } +} + +CBoneList *CBoneList::Alloc() +{ + CBoneList *newList = new CBoneList; + Assert( newList ); + if ( newList ) + { + newList->m_bShouldDelete = true; + } + return newList; +} + +CFlexList::CFlexList() +{ + m_bShouldDelete = false; + m_nNumFlexes = 0; + Q_memset( m_flexWeights, 0, sizeof( m_flexWeights ) ); +} + +void CFlexList::Release() +{ + if (m_bShouldDelete ) + { + delete this; + } + else + { + Warning( "Called Release() on CFlexList not allocated via Alloc() method\n" ); + } +} + +CFlexList *CFlexList::Alloc() +{ + CFlexList *newList = new CFlexList; + Assert( newList ); + if ( newList ) + { + newList->m_bShouldDelete = true; + } + return newList; } \ No newline at end of file -- cgit v1.2.3