|
15 | 15 | # include <seqan3/contrib/stream/bgzf_ostream.hpp> |
16 | 16 | # include <seqan3/contrib/stream/gz_istream.hpp> |
17 | 17 | # include <seqan3/contrib/stream/gz_ostream.hpp> |
18 | | -#endif |
| 18 | +#endif // SEQAN3_HAS_ZLIB |
19 | 19 |
|
20 | 20 | // only benchmark BZIP2 if explicitly requested, because slow setup |
21 | 21 | #if !defined(SEQAN3_BENCH_BZIP2) && SEQAN3_HAS_BZIP2 |
|
33 | 33 |
|
34 | 34 | # if SEQAN3_HAS_ZLIB |
35 | 35 | # define SEQAN_HAS_ZLIB 1 |
36 | | -# endif |
| 36 | +# endif // SEQAN3_HAS_ZLIB |
37 | 37 |
|
38 | 38 | # if SEQAN3_HAS_BZIP2 |
39 | 39 | # define SEQAN_HAS_BZIP2 1 |
@@ -96,7 +96,7 @@ std::string const & input_comp<seqan2::GZFile> = input_comp<seqan3::contrib::gz_ |
96 | 96 | template <> |
97 | 97 | std::string const & input_comp<seqan2::BgzfFile> = input_comp<seqan3::contrib::bgzf_istream>; |
98 | 98 | # endif |
99 | | -#endif |
| 99 | +#endif // SEQAN3_HAS_ZLIB |
100 | 100 |
|
101 | 101 | #if SEQAN3_HAS_BZIP2 |
102 | 102 | template <> |
@@ -169,7 +169,7 @@ void compressed(benchmark::State & state) |
169 | 169 | #if SEQAN3_HAS_ZLIB |
170 | 170 | BENCHMARK_TEMPLATE(compressed, seqan3::contrib::gz_istream); |
171 | 171 | BENCHMARK_TEMPLATE(compressed, seqan3::contrib::bgzf_istream); |
172 | | -#endif |
| 172 | +#endif // SEQAN3_HAS_ZLIB |
173 | 173 |
|
174 | 174 | #if SEQAN3_HAS_BZIP2 |
175 | 175 | BENCHMARK_TEMPLATE(compressed, seqan3::contrib::bz2_istream); |
@@ -204,7 +204,7 @@ void compressed_type_erased(benchmark::State & state) |
204 | 204 | #if SEQAN3_HAS_ZLIB |
205 | 205 | BENCHMARK_TEMPLATE(compressed_type_erased, seqan3::contrib::gz_istream); |
206 | 206 | BENCHMARK_TEMPLATE(compressed_type_erased, seqan3::contrib::bgzf_istream); |
207 | | -#endif |
| 207 | +#endif // SEQAN3_HAS_ZLIB |
208 | 208 | #if SEQAN3_HAS_BZIP2 |
209 | 209 | BENCHMARK_TEMPLATE(compressed_type_erased, seqan3::contrib::bz2_istream); |
210 | 210 | #endif |
@@ -238,7 +238,7 @@ void compressed_type_erased2(benchmark::State & state) |
238 | 238 | #if SEQAN3_HAS_ZLIB |
239 | 239 | BENCHMARK_TEMPLATE(compressed_type_erased2, seqan3::contrib::gz_istream); |
240 | 240 | BENCHMARK_TEMPLATE(compressed_type_erased2, seqan3::contrib::bgzf_istream); |
241 | | -#endif |
| 241 | +#endif // SEQAN3_HAS_ZLIB |
242 | 242 | #if SEQAN3_HAS_BZIP2 |
243 | 243 | BENCHMARK_TEMPLATE(compressed_type_erased2, seqan3::contrib::bz2_istream); |
244 | 244 | #endif |
|
0 commit comments