sequencing-manager: remove support for old combined seq no file
refs: #4143
Change-Id: I3334ef136f75b18225828ebfba17f63c468708db
diff --git a/src/sequencing-manager.hpp b/src/sequencing-manager.hpp
index 85e323b..307aab5 100644
--- a/src/sequencing-manager.hpp
+++ b/src/sequencing-manager.hpp
@@ -36,7 +36,7 @@
class SequencingManager
{
public:
- SequencingManager(std::string filePath, int hypState);
+ SequencingManager(const std::string& filePath, int hypState);
uint64_t
getNameLsaSeq() const
@@ -113,9 +113,9 @@
writeLog() const;
private:
- uint64_t m_nameLsaSeq;
- uint64_t m_adjLsaSeq;
- uint64_t m_corLsaSeq;
+ uint64_t m_nameLsaSeq = 0;
+ uint64_t m_adjLsaSeq = 0;
+ uint64_t m_corLsaSeq = 0;
std::string m_seqFileNameWithPath;
PUBLIC_WITH_TESTS_ELSE_PRIVATE: