dxx-rebirth/similar
Kp e864542862 Work around broken clang -Wuninitialized warning
clang warns for using an uninitialized array during the
member-initialization-list, before the union constructor would have done
nothing.  clang permits using the still-uninitialized array in the
constructor body, after the union constructor has done nothing.
The same code is generated both before and after this commit, but the
old code produces a warning and the new code is silent.

```
similar/main/physics.cpp:282:5: error: field 'a' is uninitialized when used here [-Werror,-Wuninitialized]
        e(a.begin())
```
2019-01-01 04:54:35 +00:00
..
2d
3d
arch Move Robot_info into LevelSharedRobotInfoState 2018-12-30 00:43:59 +00:00
editor Move TmapInfo to d_level_unique_tmap_info_state 2018-12-30 00:43:59 +00:00
main Work around broken clang -Wuninitialized warning 2019-01-01 04:54:35 +00:00
misc