Fix compilation error after recent DNA changes

Apparently, Clang allows to specify underlying enum type in C
but onot GCC. The latter one is actually closer to the standard.
This commit is contained in:
Sergey Sharybin 2022-08-02 14:15:23 +02:00
parent 4e2af28bc7
commit 588791df63
1 changed files with 1 additions and 1 deletions

View File

@ -763,7 +763,7 @@ enum {
};
/* Tag given ID for an update in all the dependency graphs. */
typedef enum IDRecalcFlag : unsigned int {
typedef enum IDRecalcFlag {
/***************************************************************************
* Individual update tags, this is what ID gets tagged for update with. */