mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
LibCore: Remove all remaining C prefix references
LibCore's GZip is also moved into the Core namespace with this change.
This commit is contained in:
parent
4a271430f8
commit
57f1c919df
17 changed files with 42 additions and 34 deletions
|
@ -104,7 +104,7 @@ ByteBuffer IODevice::read(size_t max_size)
|
|||
|
||||
bool IODevice::can_read_from_fd() const
|
||||
{
|
||||
// FIXME: Can we somehow remove this once CSocket is implemented using non-blocking sockets?
|
||||
// FIXME: Can we somehow remove this once Core::Socket is implemented using non-blocking sockets?
|
||||
fd_set rfds;
|
||||
FD_ZERO(&rfds);
|
||||
FD_SET(m_fd, &rfds);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue