Skip to content

Commit

Permalink
Revert "Fix GCC 14 warnings"
Browse files Browse the repository at this point in the history
This reverts commit 044806f.
  • Loading branch information
milot-mirdita committed Jul 9, 2024
1 parent 044806f commit ebfdc66
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions lib/mmseqs/src/commons/MultiParam.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ class NuclAA {
T first;
T second;

NuclAA(const NuclAA<T> &value) {
NuclAA<T>(const NuclAA<T> &value) {
this->first = value.first;
this->second = value.second;
}

static const T max;

NuclAA() {}
NuclAA<T>() {}

NuclAA(T first) {
NuclAA<T>(T first) {
this->first = first;
this->second = first;
}

NuclAA(T first, T second) {
NuclAA<T>(T first, T second) {
this->first = first;
this->second = second;
}
Expand Down Expand Up @@ -88,21 +88,21 @@ class SeqProf {
T first;
T second;

SeqProf(const SeqProf<T> &value) {
SeqProf<T>(const SeqProf<T> &value) {
this->first = value.first;
this->second = value.second;
}

static const T max;

SeqProf() {}
SeqProf<T>() {}

SeqProf(T first) {
SeqProf<T>(T first) {
this->first = first;
this->second = first;
}

SeqProf(T first, T second) {
SeqProf<T>(T first, T second) {
this->first = first;
this->second = second;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/mmseqs/src/prefiltering/CacheFriendlyOperations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CacheFriendlyOperations<BINSIZE>::CacheFriendlyOperations(size_t maxElement, siz
}

template<unsigned int BINSIZE>
CacheFriendlyOperations<BINSIZE>::~CacheFriendlyOperations(){
CacheFriendlyOperations<BINSIZE>::~CacheFriendlyOperations<BINSIZE>(){
delete[] duplicateBitArray;
delete[] binDataFrame;
delete[] tmpElementBuffer;
Expand Down

0 comments on commit ebfdc66

Please sign in to comment.