diff --git a/src/modules/common/correlator.cpp b/src/modules/common/correlator.cpp index 25852b0fb..eaaf17cbb 100644 --- a/src/modules/common/correlator.cpp +++ b/src/modules/common/correlator.cpp @@ -6,7 +6,6 @@ */ #include "correlator.h" -#include #include #include @@ -29,7 +28,7 @@ Correlator::~Correlator() { void Correlator::addWord(uint32_t word) { if (currentWordSize != 0 && currentWordSize != 32) { - throw WordSizeException(32, currentWordSize); + // throw WordSizeException(32, currentWordSize); } VecU8 wordVec; @@ -46,7 +45,7 @@ void Correlator::addWord(uint32_t word) { void Correlator::addWord(uint64_t word) { if (currentWordSize != 0 && currentWordSize != 64) { - throw WordSizeException(64, currentWordSize); + //throw WordSizeException(64, currentWordSize); } VecU8 wordVec;