- did a test compile as C++20 and fixed all warnings that got emitted.
This commit is contained in:
parent
d310487ad4
commit
595975fcc7
6 changed files with 10 additions and 16 deletions
|
|
@ -173,8 +173,8 @@ class FNodeBuilder
|
|||
fixed64_t MinX, MinY, MaxX, MaxY;
|
||||
int BlocksWide, BlocksTall;
|
||||
|
||||
enum { BLOCK_SHIFT = 8 + FRACBITS };
|
||||
enum { BLOCK_SIZE = 1 << BLOCK_SHIFT };
|
||||
static constexpr int BLOCK_SHIFT = 8 + FRACBITS;
|
||||
static constexpr int BLOCK_SIZE = 1 << BLOCK_SHIFT;
|
||||
|
||||
int InsertVertex (FPrivVert &vert);
|
||||
inline int GetBlock (fixed64_t x, fixed64_t y)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue