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>2019-04-16 17:53:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-16 17:57:47 +0300
commit2986bc1d6e5d89aa59e191f3b0e7eb0be7de42ba (patch)
treeca9e73673f9022f464f651bbc320f7ab37ea8574 /source/blender/blenlib/intern/fnmatch.c
parente0fe7199971728dfa4e84cd3c63e17dde48d0c7a (diff)
ClangFormat: add comments to ignore formatting
Diffstat (limited to 'source/blender/blenlib/intern/fnmatch.c')
-rw-r--r--source/blender/blenlib/intern/fnmatch.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/fnmatch.c b/source/blender/blenlib/intern/fnmatch.c
index 9ba2cdbf2e6..c0675e8c4d6 100644
--- a/source/blender/blenlib/intern/fnmatch.c
+++ b/source/blender/blenlib/intern/fnmatch.c
@@ -19,6 +19,10 @@
#ifdef WIN32
+
+/* Maintained by GLIBC. */
+/* clang-format off */
+
/* Enable GNU extensions in fnmatch.h. */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
@@ -237,6 +241,8 @@ fnmatch (const char *pattern, const char *string, int flags)
#endif /* _LIBC or not __GNU_LIBRARY__. */
+/* clang-format on */
+
#else
/* intentionally empty for UNIX */