Skip to content

Commit f2416f4

Browse files
committed
changed links
1 parent be4bdb9 commit f2416f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xxhash.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@ XXH3_128bits_reset_withSecretandSeed(XXH3_state_t* statePtr,
13191319
* care, as what works on one compiler/platform/optimization level may cause
13201320
* another to read garbage data or even crash.
13211321
*
1322-
* See https://stackoverflow.com/a/32095106/646947 for details.
1322+
* See http://fastcompression.blogspot.com/2015/08/accessing-unaligned-memory.html for details.
13231323
*
13241324
* Prefer these methods in priority order (0 > 3 > 1 > 2)
13251325
*/
@@ -1683,7 +1683,7 @@ static xxh_u32 XXH_read32(const void* ptr)
16831683

16841684
/*
16851685
* Portable and safe solution. Generally efficient.
1686-
* see: https://stackoverflow.com/a/32095106/646947
1686+
* see: http://fastcompression.blogspot.com/2015/08/accessing-unaligned-memory.html
16871687
*/
16881688
static xxh_u32 XXH_read32(const void* memPtr)
16891689
{
@@ -2326,7 +2326,7 @@ static xxh_u64 XXH_read64(const void* ptr)
23262326

23272327
/*
23282328
* Portable and safe solution. Generally efficient.
2329-
* see: https://stackoverflow.com/a/32095106/646947
2329+
* see: http://fastcompression.blogspot.com/2015/08/accessing-unaligned-memory.html
23302330
*/
23312331
static xxh_u64 XXH_read64(const void* memPtr)
23322332
{

0 commit comments

Comments
 (0)