mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-16 23:27:17 +02:00
file-descriptor.hh
: Avoid some Cism for better C++isms
- `reinterpret_cast` not C-style cast - `using` not `typedef`
This commit is contained in:
parent
c16fc2c1bd
commit
9c815db366
1 changed files with 4 additions and 4 deletions
|
@ -17,13 +17,13 @@ struct Source;
|
||||||
/**
|
/**
|
||||||
* Operating System capability
|
* Operating System capability
|
||||||
*/
|
*/
|
||||||
typedef
|
using Descriptor =
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
HANDLE
|
HANDLE
|
||||||
#else
|
#else
|
||||||
int
|
int
|
||||||
#endif
|
#endif
|
||||||
Descriptor;
|
;
|
||||||
|
|
||||||
const Descriptor INVALID_DESCRIPTOR =
|
const Descriptor INVALID_DESCRIPTOR =
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
|
@ -41,7 +41,7 @@ const Descriptor INVALID_DESCRIPTOR =
|
||||||
static inline Descriptor toDescriptor(int fd)
|
static inline Descriptor toDescriptor(int fd)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
return (HANDLE) _get_osfhandle(fd);
|
return reinterpret_cast<HANDLE>(_get_osfhandle(fd));
|
||||||
#else
|
#else
|
||||||
return fd;
|
return fd;
|
||||||
#endif
|
#endif
|
||||||
|
@ -56,7 +56,7 @@ static inline Descriptor toDescriptor(int fd)
|
||||||
static inline int fromDescriptorReadOnly(Descriptor fd)
|
static inline int fromDescriptorReadOnly(Descriptor fd)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
return _open_osfhandle((intptr_t) fd, _O_RDONLY);
|
return _open_osfhandle(reinterpret_cast<intptr_t>(fd), _O_RDONLY);
|
||||||
#else
|
#else
|
||||||
return fd;
|
return fd;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue