From: ko-zu Date: Sun, 16 Sep 2018 01:27:02 +0000 (+0900) Subject: Fix clang build X-Git-Tag: v0.0.29~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18b4a1da618dd40fc9384120ff8205e9d239b896;p=thirdparty%2Fzstd.git Fix clang build Fix dixygen comment Fix clang binary path --- diff --git a/Makefile b/Makefile index e29f0f749..a17900450 100644 --- a/Makefile +++ b/Makefile @@ -215,7 +215,7 @@ gcc6test: clean clangtest: clean clang -v - $(MAKE) all CXX=clang-++ CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion -Wdocumentation" + $(MAKE) all CXX=clang++ CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion -Wdocumentation" armtest: clean $(MAKE) -C $(TESTDIR) datagen # use native, faster diff --git a/lib/compress/hist.h b/lib/compress/hist.h index 788470da7..8b1991a90 100644 --- a/lib/compress/hist.h +++ b/lib/compress/hist.h @@ -50,7 +50,7 @@ size_t HIST_count(unsigned* count, unsigned* maxSymbolValuePtr, const void* src, size_t srcSize); -unsigned HIST_isError(size_t code); /*< tells if a return value is an error code */ +unsigned HIST_isError(size_t code); /**< tells if a return value is an error code */ /* --- advanced histogram functions --- */