Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2022-08-02 15:15:23 +0300
committerSergey Sharybin <sergey@blender.org>2022-08-02 15:15:53 +0300
commit588791df637a078aae20250022bc5fcd1fc07d1a (patch)
treea84513b5b8c45e556caeae8c88d9b93b59b37a8d /source/blender/makesdna/DNA_ID.h
parent4e2af28bc72795aa146d6a5c4339ecad7bccfef6 (diff)
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.
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 7ba2b426fcf..0dc7d75e744 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -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. */