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:
authorCampbell Barton <ideasman42@gmail.com>2012-07-08 21:51:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-08 21:51:28 +0400
commit2580575658c17538baf2770ef823cf21c7ec1710 (patch)
treee93e697cc7c2911229eec3003c3524b1db0f45a0 /source/blender/blenkernel/BKE_idprop.h
parent063f78041af082222f8a5c6dc4fd3f6f956ae9fe (diff)
correct another case of nonnull (all should be correct now), and comment about color conversion.
Diffstat (limited to 'source/blender/blenkernel/BKE_idprop.h')
-rw-r--r--source/blender/blenkernel/BKE_idprop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_idprop.h b/source/blender/blenkernel/BKE_idprop.h
index 0f9c987b47c..3cf4a2c5cdc 100644
--- a/source/blender/blenkernel/BKE_idprop.h
+++ b/source/blender/blenkernel/BKE_idprop.h
@@ -180,7 +180,7 @@ __attribute__((nonnull))
int IDP_InsertToGroup(struct IDProperty *group, struct IDProperty *previous,
struct IDProperty *pnew)
#ifdef __GNUC__
-__attribute__((nonnull))
+__attribute__((nonnull (1, 3))) /* 'group', 'pnew' */
#endif
;