Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Nov 13, 2023
1 parent 1798fb0 commit 03dc569
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ int main()

auto rna15_view = vector | seqan3::views::convert<seqan3::rna15>;

for (auto && chr: rna15_view) // converts lazily on-the-fly
for (auto && chr : rna15_view) // converts lazily on-the-fly
{
static_assert(std::same_as<decltype(chr), seqan3::rna15 &&>);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ int main()

auto rna4_view = vector | seqan3::views::convert<seqan3::rna4>;

for (auto && chr: rna4_view) // converts lazily on-the-fly
for (auto && chr : rna4_view) // converts lazily on-the-fly
{
static_assert(std::same_as<decltype(chr), seqan3::rna4 &&>);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ int main()

auto rna5_view = vector | seqan3::views::convert<seqan3::rna5>;

for (auto && chr: rna5_view) // converts lazily on-the-fly
for (auto && chr : rna5_view) // converts lazily on-the-fly
{
static_assert(std::same_as<decltype(chr), seqan3::rna5 &&>);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// generated from test/snippet/alphabet/nucleotide/@target_alphabet@_implicit_conversion_from_@[email protected]

//![main]
#include <seqan3/alphabet/nucleotide/rna15.hpp>
#include <seqan3/alphabet/nucleotide/dna15.hpp>
#include <seqan3/alphabet/nucleotide/rna15.hpp>

int main()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// generated from test/snippet/alphabet/nucleotide/@target_alphabet@_implicit_conversion_from_@source_alphabet@_inherit.cpp.in

//![main]
#include <seqan3/alphabet/nucleotide/rna15.hpp>
#include <seqan3/alphabet/nucleotide/dna15.hpp>
#include <seqan3/alphabet/nucleotide/rna15.hpp>

struct my_rna15 : public seqan3::rna15
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//![main]
#include <vector>

#include <seqan3/alphabet/nucleotide/rna15.hpp>
#include <seqan3/alphabet/nucleotide/dna15.hpp>
#include <seqan3/alphabet/nucleotide/rna15.hpp>

int main()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//![main]
#include <vector>

#include <seqan3/alphabet/nucleotide/rna15.hpp>
#include <seqan3/alphabet/nucleotide/dna15.hpp>
#include <seqan3/alphabet/nucleotide/rna15.hpp>
#include <seqan3/utility/views/convert.hpp>

int main()
Expand All @@ -15,7 +15,7 @@ int main()

auto dna15_view = vector | seqan3::views::convert<seqan3::dna15>;

for (auto && chr: dna15_view) // converts lazily on-the-fly
for (auto && chr : dna15_view) // converts lazily on-the-fly
{
static_assert(std::same_as<decltype(chr), seqan3::dna15 &&>);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// generated from test/snippet/alphabet/nucleotide/@target_alphabet@_implicit_conversion_from_@[email protected]

//![main]
#include <seqan3/alphabet/nucleotide/rna4.hpp>
#include <seqan3/alphabet/nucleotide/dna4.hpp>
#include <seqan3/alphabet/nucleotide/rna4.hpp>

int main()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// generated from test/snippet/alphabet/nucleotide/@target_alphabet@_implicit_conversion_from_@source_alphabet@_inherit.cpp.in

//![main]
#include <seqan3/alphabet/nucleotide/rna4.hpp>
#include <seqan3/alphabet/nucleotide/dna4.hpp>
#include <seqan3/alphabet/nucleotide/rna4.hpp>

struct my_rna4 : public seqan3::rna4
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//![main]
#include <vector>

#include <seqan3/alphabet/nucleotide/rna4.hpp>
#include <seqan3/alphabet/nucleotide/dna4.hpp>
#include <seqan3/alphabet/nucleotide/rna4.hpp>

int main()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//![main]
#include <vector>

#include <seqan3/alphabet/nucleotide/rna4.hpp>
#include <seqan3/alphabet/nucleotide/dna4.hpp>
#include <seqan3/alphabet/nucleotide/rna4.hpp>
#include <seqan3/utility/views/convert.hpp>

int main()
Expand All @@ -15,7 +15,7 @@ int main()

auto dna4_view = vector | seqan3::views::convert<seqan3::dna4>;

for (auto && chr: dna4_view) // converts lazily on-the-fly
for (auto && chr : dna4_view) // converts lazily on-the-fly
{
static_assert(std::same_as<decltype(chr), seqan3::dna4 &&>);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// generated from test/snippet/alphabet/nucleotide/@target_alphabet@_implicit_conversion_from_@[email protected]

//![main]
#include <seqan3/alphabet/nucleotide/rna5.hpp>
#include <seqan3/alphabet/nucleotide/dna5.hpp>
#include <seqan3/alphabet/nucleotide/rna5.hpp>

int main()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// generated from test/snippet/alphabet/nucleotide/@target_alphabet@_implicit_conversion_from_@source_alphabet@_inherit.cpp.in

//![main]
#include <seqan3/alphabet/nucleotide/rna5.hpp>
#include <seqan3/alphabet/nucleotide/dna5.hpp>
#include <seqan3/alphabet/nucleotide/rna5.hpp>

struct my_rna5 : public seqan3::rna5
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//![main]
#include <vector>

#include <seqan3/alphabet/nucleotide/rna5.hpp>
#include <seqan3/alphabet/nucleotide/dna5.hpp>
#include <seqan3/alphabet/nucleotide/rna5.hpp>

int main()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//![main]
#include <vector>

#include <seqan3/alphabet/nucleotide/rna5.hpp>
#include <seqan3/alphabet/nucleotide/dna5.hpp>
#include <seqan3/alphabet/nucleotide/rna5.hpp>
#include <seqan3/utility/views/convert.hpp>

int main()
Expand All @@ -15,7 +15,7 @@ int main()

auto dna5_view = vector | seqan3::views::convert<seqan3::dna5>;

for (auto && chr: dna5_view) // converts lazily on-the-fly
for (auto && chr : dna5_view) // converts lazily on-the-fly
{
static_assert(std::same_as<decltype(chr), seqan3::dna5 &&>);
}
Expand Down

0 comments on commit 03dc569

Please sign in to comment.