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:
authorJoseph Eagar <joeedh@gmail.com>2021-06-26 23:00:26 +0300
committerJoseph Eagar <joeedh@gmail.com>2021-06-26 23:00:26 +0300
commit83c491f044db0072143801b03aded573ed7093f9 (patch)
tree45376aedcded9033be0b795a205c42638c345ef9 /source/blender/blenlib/BLI_ghash.h
parent7ef7843ada944a5530ff4de812a5684e39809142 (diff)
parentabc62003314af2b39136bf43031590d4fbfb72df (diff)
Merge branch 'master' into temp_bmesh_multires
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index fcf9ca61200..01a18b81b87 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -277,7 +277,7 @@ void *BLI_gset_pop_key(GSet *gs, const void *key) ATTR_WARN_UNUSED_RESULT;
/* so we can cast but compiler sees as different */
typedef struct GSetIterator {
GHashIterator _ghi
-#ifdef __GNUC__
+#if defined(__GNUC__) && !defined(__clang__)
__attribute__((deprecated))
#endif
;