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:
authorSybren A. Stüvel <sybren@blender.org>2021-09-21 18:49:36 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-09-21 18:50:23 +0300
commit2df7d1ebce862a7c7471f7a6ba3d7d14d392b3a5 (patch)
tree83235dea8117efc590df3eef98c439086946ba33 /source/blender/blenlib
parent49ab38bf54d4da95f0bb67a348c9305527d95983 (diff)
Cleanup: mention `UUID_STRING_LEN` in comment
Mention that `UUID_STRING_LEN` exists in the documentation of `BLI_uuid_format()`. No functional changes.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_uuid.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_uuid.h b/source/blender/blenlib/BLI_uuid.h
index 1ce294ed723..0c6fb3ae3e7 100644
--- a/source/blender/blenlib/BLI_uuid.h
+++ b/source/blender/blenlib/BLI_uuid.h
@@ -51,6 +51,7 @@ bool BLI_uuid_equal(UUID uuid1, UUID uuid2);
/**
* Format UUID as string.
* The buffer must be at least 37 bytes (36 bytes for the UUID + terminating 0).
+ * Use `UUID_STRING_LEN` from DNA_uuid_types.h if you want to use a constant for this.
*/
void BLI_uuid_format(char *buffer, UUID uuid) ATTR_NONNULL();