Skip to content

Commit 437e1a3

Browse files
committed
fix cross-compilation for Windows
call to data structure was not renamed properly in a Windows-specific region of the code
1 parent 631a7d6 commit 437e1a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/otutable.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ auto otutable_add(char const * query_header, char const * target_header, int64_t
271271
std::cmatch cmatch_tax;
272272
if (std::regex_search(target_header, cmatch_tax, regex_tax))
273273
{
274-
otutable->otu_tax_map[otu_name_v.data()] = cmatch_tax.str(2);
274+
otutable->otu_tax_map[otu_name.data()] = cmatch_tax.str(2);
275275
}
276276
#endif
277277
}

0 commit comments

Comments
 (0)