Skip to content

Commit

Permalink
fix windows build error
Browse files Browse the repository at this point in the history
  • Loading branch information
cbielow committed Apr 3, 2024
1 parent 96a1886 commit 7302df1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/openms/include/OpenMS/CHEMISTRY/AAIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@ namespace OpenMS
@ingroup Chemistry
*/
class OPENMS_DLLAPI AAIndex
class AAIndex
{

public:
/// Constructor not implemented
AAIndex() = delete;

/// Returns if the residue is aliphatic (1.0 or 0.0)
static double aliphatic(char aa)
Expand Down Expand Up @@ -1233,11 +1236,6 @@ namespace OpenMS
throw Exception::InvalidValue(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Unknown amino acid one-letter-code", String(aa));
}
}

private:

///Constructor not implemented => private
AAIndex();
};

}

0 comments on commit 7302df1

Please sign in to comment.