mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-29 18:08:29 +00:00
d/steamvr_lh: Fix xrt_space_relation_flags |= operator again
This commit is contained in:
parent
b2b9fd0658
commit
9387a09746
|
@ -663,10 +663,11 @@ operator|(xrt_space_relation_flags a, xrt_space_relation_flags b)
|
|||
return static_cast<xrt_space_relation_flags>(static_cast<uint32_t>(a) | static_cast<uint32_t>(b));
|
||||
}
|
||||
|
||||
inline xrt_space_relation_flags
|
||||
operator|=(xrt_space_relation_flags a, xrt_space_relation_flags b)
|
||||
inline xrt_space_relation_flags &
|
||||
operator|=(xrt_space_relation_flags &a, xrt_space_relation_flags b)
|
||||
{
|
||||
return a | b;
|
||||
a = a | b;
|
||||
return a;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue