Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PAPPSO
xtpcpp
Commits
57cadb2d
Commit
57cadb2d
authored
Nov 09, 2020
by
Langella Olivier
Browse files
declare explicit structure constructor
parent
a4529ce4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/output/proticdbml.cpp
View file @
57cadb2d
...
...
@@ -11,7 +11,7 @@
* This file is part of XTPcpp.
*
* XTPcpp is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
by
* it under the terms of the GNU General Public License as published
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
...
...
@@ -513,6 +513,13 @@ getProticPeptideHitKey(const PeptideEvidence *p_peptide_evidence)
struct
ProticPeptideHit
{
ProticPeptideHit
(
QString
ikey
,
PeptideMatch
ipeptide_match
)
:
key
(
ikey
),
peptide_match
(
ipeptide_match
){};
ProticPeptideHit
(
const
ProticPeptideHit
&
other
)
{
key
=
other
.
key
;
peptide_match
=
other
.
peptide_match
;
};
bool
operator
==
(
const
ProticPeptideHit
&
other
)
const
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment