dxx-rebirth/common
Kp 26ab08d55f Add stub definitions of enum vertnum_t,wallnum_t
Given this code:

```
enum class X : unsigned;
X a{1};
```

gdb has an unfortunate behavior of reporting "incomplete type" and
refusing to show the underlying value of `a`, even when `a` is in scope.
Adding `enum class X : unsigned {}` fixes this and allows gdb to show
the value.
2022-08-22 01:24:49 +00:00
..
2d Prefer C++20 std::span over internal span for decode_row 2022-07-30 17:42:59 +00:00
3d Move various static functions into anonymous namespace 2022-07-09 13:39:29 +00:00
arch Move various static functions into anonymous namespace 2022-07-09 13:39:29 +00:00
editor Move various static functions into anonymous namespace 2022-07-09 13:39:29 +00:00
include Replace various uses of std::enable_if with C++20 requires() 2022-07-30 17:42:59 +00:00
main Add stub definitions of enum vertnum_t,wallnum_t 2022-08-22 01:24:49 +00:00
maths Remove quadint members low, high 2022-05-24 02:32:58 +00:00
mem Refer to <array> directly, not through "compiler-array.h" 2020-05-02 21:18:42 +00:00
misc Move various static functions into anonymous namespace 2022-07-09 13:39:29 +00:00
music Rework ADL dynamic loader 2018-10-15 00:51:53 +00:00
texmap Require support for C++17 attribute [[fallthrough]] 2022-01-09 15:25:42 +00:00
ui Move various static functions into anonymous namespace 2022-07-09 13:39:29 +00:00
unittest Add unit tests for enumerate 2022-02-13 19:13:38 +00:00