Skip to content

Commit

Permalink
comply with gcc13
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengxwen committed Apr 27, 2024
1 parent 510b0c3 commit 16bba1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: SeqArray
Type: Package
Title: Data Management of Large-Scale Whole-Genome Sequence Variant Calls
Version: 1.43.7
Date: 2024-04-23
Version: 1.43.8
Date: 2024-04-27
Depends: R (>= 3.5.0), gdsfmt (>= 1.31.1)
Imports: methods, parallel, IRanges, GenomicRanges, GenomeInfoDb, Biostrings,
S4Vectors
Expand Down
3 changes: 2 additions & 1 deletion src/vectorization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1826,6 +1826,7 @@ size_t vec_f64_num_notfinite(const double p[], size_t n)

const char *vec_char_find_CRLF(const char *p, size_t n)
{
/*
#ifdef COREARRAY_SIMD_SSE2
// header 1, 16-byte aligned
Expand Down Expand Up @@ -1879,7 +1880,7 @@ const char *vec_char_find_CRLF(const char *p, size_t n)
#endif
#endif

*/
// tail
for (; n > 0; n--, p++)
if (*p=='\n' || *p=='\r') break;
Expand Down

0 comments on commit 16bba1e

Please sign in to comment.