Skip to content

Commit

Permalink
[Core] Fix 'non-pointer-type' compilation error (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Foulds authored Sep 8, 2023
1 parent fc31390 commit 89968f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/core/SocketServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace Core {
}
inline uint32_t Count() const
{
return (_clients->size());
return (_clients.size());
}
HANDLECLIENT Client()
{
Expand Down

0 comments on commit 89968f1

Please sign in to comment.