X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=suffixnodes.hpp;h=6a22c4d4359b8ee6120c3e683b2d14318fd0c05c;hp=1e078a63a759a99b4b47ed123526da752e2404bd;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=d3aed959ca3b68890eeb7b815e24210bcfeb256c diff --git a/suffixnodes.hpp b/suffixnodes.hpp index 1e078a6..6a22c4d 100644 --- a/suffixnodes.hpp +++ b/suffixnodes.hpp @@ -25,7 +25,6 @@ class SuffixNode { public: SuffixNode(int, int, int); - SuffixNode(const SuffixNode& sn) : parentNode(sn.parentNode), startCharPosition(sn.startCharPosition), endCharPosition(sn.endCharPosition) {m = MothurOut::getInstance();} virtual ~SuffixNode() {} virtual void print(string, int) = 0; virtual void setChildren(char, int); @@ -63,7 +62,6 @@ class SuffixBranch : public SuffixNode { public: SuffixBranch(int, int, int); - SuffixBranch(const SuffixBranch& sb) : suffixNode(sb.suffixNode), childNodes(sb.childNodes), SuffixNode(sb.parentNode, sb.startCharPosition, sb.endCharPosition) {} ~SuffixBranch() {} void print(string, int); // need a special method for printing the node because there are children void eraseChild(char); // need a special method for erasing the children