diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-02 12:17:44 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-02 12:17:44 -0400 |
commit | 086b1e48828740ce215ba3609dcb899c8687bfa0 (patch) | |
tree | ae4571905d2451c63a1651d0ddfe702adb2feb8f /src | |
parent | 87dbcb62ef00e6509d92ec46d9024e2d1c453df3 (diff) |
TArray: Make `{,fast_}fill_with()` type generic
Diffstat (limited to 'src')
-rw-r--r-- | src/pso/TSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pso/TSocket.cpp b/src/pso/TSocket.cpp index f9e954d..0a0166e 100644 --- a/src/pso/TSocket.cpp +++ b/src/pso/TSocket.cpp @@ -38,7 +38,7 @@ int TSocket::resolve_domain(char *domain) { } TSocket::TSocket(TObject *parent) : TObject(parent) { - m_dst_addr.addr_bytes.fast_fill_with(0); + m_dst_addr.addr_bytes.fast_fill_with<u8>(0); m_dst_port = 0; m_src_port = 0; m_sock_fd = -1; |