Skip to content

Commit 0035522

Browse files
committed
[FIX] build with mmapped tunred off
1 parent c66be7f commit 0035522

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/options.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,10 @@ struct DefaultIndexStringSpec<StringSet<TString, TSpec>>
104104
template <typename TDirection, typename TStorageSpec>
105105
struct FormattedFileContext<FormattedFile<Bam, TDirection, BlastTabular>, TStorageSpec>
106106
{
107-
typedef StringSet<Segment<String<char, MMap<> >, InfixSegment> > TNameStore;
108-
typedef NameStoreCache<TNameStore> TNameStoreCache;
109-
typedef BamIOContext<TNameStore, TNameStoreCache, TStorageSpec> Type;
107+
typedef typename DefaultIndexStringSpec<StringSet<void, void>>::Type TStringSpec; // see above
108+
typedef StringSet<Segment<String<char, TStringSpec>, InfixSegment> > TNameStore;
109+
typedef NameStoreCache<TNameStore> TNameStoreCache;
110+
typedef BamIOContext<TNameStore, TNameStoreCache, TStorageSpec> Type;
110111
};
111112

112113
}

0 commit comments

Comments
 (0)