From 70e72e84212f5b6b15f2e1a2b2d95d1d67abac7f Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 27 Aug 2019 08:30:20 +0200 Subject: Make InputBase::open() return void --- src/input/Prbs.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/input/Prbs.cpp') diff --git a/src/input/Prbs.cpp b/src/input/Prbs.cpp index 7856a46..821f7b1 100644 --- a/src/input/Prbs.cpp +++ b/src/input/Prbs.cpp @@ -44,7 +44,7 @@ namespace Inputs { // Preferred polynomial is G(x) = x^20 + x^17 + 1 const uint32_t PRBS_DEFAULT_POLY = (1 << 20) | (1 << 17) | (1 << 0); -int Prbs::open(const string& name) +void Prbs::open(const string& name) { if (name.substr(0, 7) != "prbs://") { throw logic_error("Invalid PRBS name"); @@ -73,8 +73,6 @@ int Prbs::open(const string& name) m_prbs.setup(polynomial); } rewind(); - - return 0; } int Prbs::readFrame(uint8_t* buffer, size_t size) -- cgit v1.2.3