We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e6b35 commit 65b8f8bCopy full SHA for 65b8f8b
2 files changed
Doxyfile
@@ -1,3 +1,7 @@
1
+# SPDX-FileCopyrightText: The Bio++ Development Group
2
+#
3
+# SPDX-License-Identifier: CECILL-2.1
4
+
5
# Doxyfile 1.9.8
6
7
# This file describes the settings to be used by the documentation system
src/Bpp/Seq/Alphabet/CodonAlphabet.h
@@ -30,7 +30,7 @@ class CodonAlphabet :
30
public AbstractAlphabet
31
{
32
protected:
33
- const std::shared_ptr<const NucleicAlphabet> nAlph_;
+ std::shared_ptr<const NucleicAlphabet> nAlph_; //Note: this cannot be const, otherwise copy-constructor cannot work.
34
35
public:
36
// Constructor and destructor.
0 commit comments