You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We miss seqan3::literals. We think the original issue was that seqan3::literals (in plural because the std names it also plural) wasn't defined as an inline namespace. S.t. you needed to "import" seqan namespaces twice:
The main problem is that we discourage to use using namespace seqan3;, but if you want to use a literal, you need to import it with a weird syntax using seqan3::operator""_aa10li;. Now you can use using namespace seqan3::literals;
Tests should still import it explicitly instead of using namespace seqan3::literals;. Snippets should use using namespace seqan3::literals;.
We sometimes have
* \attention
* All seqan3 literals are in the namespaceseqan3!
Description
See old discussion why we abandoned it seqan/seqan3#152.
Acceptance Criteria
Tasks
Definition of Done
The text was updated successfully, but these errors were encountered: