Skip to content

Commit

Permalink
Attempt bugfix for clang (#16)
Browse files Browse the repository at this point in the history
* Update github documentation

* Update links

* Fix typo

* Fix typo

* Add code block for conda

* Fix typo

* rst sure sucks

* Formatting

* Formatting

* Fix typo

* Add third fastq file to Readme

* Fix spacing error

* Add link to fastp

* Add distance measure to log message

* Fix bug where the effect of the -e and -x flags was switched

* Revert unintentional change

* Use {} initializer syntax

* Attempt fix for clang error on MacOS
  • Loading branch information
Redmar-van-den-Berg authored Feb 20, 2024
1 parent ff5067a commit 95319f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/humid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ vector<Cluster*> findClusters(
size_t id {0};
for (Result<NLeaf> const& result: trie.walk()) {
if (not result.leaf->cluster) {
Cluster* cluster {new Cluster(id++)};
Cluster* cluster {new Cluster {id++}};
if (maximum) {
assignMaxCluster(result.leaf, cluster);
}
Expand Down

0 comments on commit 95319f1

Please sign in to comment.