diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-30 14:59:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-30 19:13:30 +0100 |
commit | d92296e3f644fe803eb7979d33cf682298d74f2a (patch) | |
tree | 6fa2c17d48095ce7e2ebd3c6d3456618bbf29829 | |
parent | a5597bc96980af4216efe989176f2348053d35d2 (diff) |
-Werror,-Wunused-macros (clang-cl)
(And for non-__GNUC__, use of "inline" in
static inline int clz(unsigned int value)
should be accepted just fine by the C compiler.)
Change-Id: I2b861aa39b815c16aa49a33a9d1fa7dfc3e1646c
Reviewed-on: https://gerrit.libreoffice.org/67156
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | solenv/bin/concat-deps.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c index 64a7f1dfa315..9981b7775ee0 100644 --- a/solenv/bin/concat-deps.c +++ b/solenv/bin/concat-deps.c @@ -105,7 +105,6 @@ #define FILE_O_RDONLY _O_RDONLY #define FILE_O_BINARY _O_BINARY #define PATHNCMP _strnicmp /* MSVC converts paths to lower-case sometimes? */ -#define inline __inline #define ssize_t long #define S_ISREG(mode) (((mode) & _S_IFMT) == (_S_IFREG)) /* MSVC does not have this macro */ #else /* not windaube */ |