Skip to content

Commit afa30f0

Browse files
hzqstVauff
authored andcommitted
Update utils.h, fix missing #include <string> (#421)
1 parent 0354abe commit afa30f0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/utils/utils.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
#include "playerslot.h"
2323
#include "utlvector.h"
24+
#include <string>
2425

2526
class CServerSideClient;
2627

@@ -31,4 +32,4 @@ CUtlVector<CServerSideClient*>* GetClientList();
3132
CServerSideClient* GetClientBySlot(CPlayerSlot slot);
3233

3334
uint32 GetSoundEventHash(const char* pszSoundEventName);
34-
std::string StringToLower(std::string strValue);
35+
std::string StringToLower(std::string strValue);

0 commit comments

Comments
 (0)