Skip to content

Commit

Permalink
Merge pull request #661 from easyaspi314/doxygen_xxh3
Browse files Browse the repository at this point in the history
Documentation update
  • Loading branch information
Cyan4973 committed Dec 13, 2021
2 parents f3eaf95 + 2d11523 commit c0d7495
Show file tree
Hide file tree
Showing 3 changed files with 488 additions and 281 deletions.
5 changes: 4 additions & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
DOXYFILE_ENCODING = UTF-8

PROJECT_NAME = "xxHash"
PROJECT_NUMBER = "0.8.0"
PROJECT_NUMBER = "0.8.1"
PROJECT_BRIEF = "Extremely fast non-cryptographic hash function"
OUTPUT_DIRECTORY = doxygen
OUTPUT_LANGUAGE = English
Expand Down Expand Up @@ -42,6 +42,9 @@ PREDEFINED = "XXH_DOXYGEN=" \
"XSUM_API=" \
"XXH_STATIC_LINKING_ONLY" \
"XXH_IMPLEMENTATION" \
"XXH_PUREF=[[gnu::pure]]" \
"XXH_CONSTF=[[gnu::const]]" \
"XXH_MALLOCF=[[gnu::malloc]]" \
"XXH_ALIGN(N)=alignas(N)" \
"XXH_ALIGN_MEMBER(align,type)=alignas(align) type"

Expand Down
4 changes: 2 additions & 2 deletions xxh_x86dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/*!
* @file xxh_x86dispatch.c
*
* Automatic dispatcher code for the @ref xxh3_family on x86-based targets.
* Automatic dispatcher code for the @ref XXH3_family on x86-based targets.
*
* Optional add-on.
*
Expand Down Expand Up @@ -316,7 +316,7 @@ static xxh_u64 XXH_xgetbv(void)
*
* Runs various CPUID/XGETBV tests to try and determine the best implementation.
*
* @ret The best @ref XXH_VECTOR implementation.
* @return The best @ref XXH_VECTOR implementation.
* @see XXH_VECTOR_TYPES
*/
static int XXH_featureTest(void)
Expand Down

0 comments on commit c0d7495

Please sign in to comment.