Skip to content

Commit

Permalink
using + clangformat
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNormalnij committed Mar 4, 2024
1 parent 1d9d416 commit 276658b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Client/game_sa/CPtrNodeSingleListSA.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

#pragma once

template<class T>
template <class T>
struct CPtrNodeSingleLink
{
T* pItem;
CPtrNodeSingleLink* pNext;
};

template<class T>
template <class T>
class CPtrNodeSingleListSAInterface
{
public:
Expand All @@ -31,7 +31,7 @@ class CPtrNodeSingleListSAInterface
template <class T>
void CPtrNodeSingleListSAInterface<T>::RemoveItem(T* item)
{
typedef void(__thiscall * CPtrNodeSingleList_RemoveItem_t)(CPtrNodeSingleListSAInterface<T> * pLinkList, void* item);
using CPtrNodeSingleList_RemoveItem_t = void(__thiscall*)(CPtrNodeSingleListSAInterface<T> * pLinkList, void* item);
((CPtrNodeSingleList_RemoveItem_t)0x533610)(this, item);
}

Expand Down

0 comments on commit 276658b

Please sign in to comment.