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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-13 06:46:22 +0300
committerCampbell Barton <campbell@blender.org>2022-04-13 06:47:04 +0300
commit7d3db7a3ae9f3b3039e81138e3d399f1d4f9717f (patch)
treef4ddc62c69b8a30f65abfd173aa81cc4910ffa1d /intern
parent4b5195a9d75ac1cef101f902c9866e07e75193bb (diff)
Cleanup: use C++ comments for disabled code
Also ensure space around text in C-comment blocks.
Diffstat (limited to 'intern')
-rw-r--r--intern/utfconv/utfconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/utfconv/utfconv.c b/intern/utfconv/utfconv.c
index a9625309a55..4cc72ae110f 100644
--- a/intern/utfconv/utfconv.c
+++ b/intern/utfconv/utfconv.c
@@ -40,7 +40,7 @@ size_t count_utf_8_from_16(const wchar_t *string16)
}
else {
if (u < 0xE000) {
- /*illegal*/;
+ /* Illegal. */
}
else {
count += 3;