blob: a3ea83cfae7836ec3cacc0fd1eed723917f1c41e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// file : butl/fdstream.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
namespace butl
{
inline fdopen_mode operator& (fdopen_mode x, fdopen_mode y) {return x &= y;}
inline fdopen_mode operator| (fdopen_mode x, fdopen_mode y) {return x |= y;}
inline fdopen_mode
operator&= (fdopen_mode& x, fdopen_mode y)
{
return x = static_cast<fdopen_mode> (
static_cast<std::uint16_t> (x) &
static_cast<std::uint16_t> (y));
}
inline fdopen_mode
operator|= (fdopen_mode& x, fdopen_mode y)
{
return x = static_cast<fdopen_mode> (
static_cast<std::uint16_t> (x) |
static_cast<std::uint16_t> (y));
}
}
|