From 2ebb152342283a2237bc7ca2dd96baf3cac0d56e Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Sat, 6 May 2023 19:40:42 +0300 Subject: Fix previously introduced regression. --- src/input-parser.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/input-parser.cpp b/src/input-parser.cpp index f9ad73b..a332404 100644 --- a/src/input-parser.cpp +++ b/src/input-parser.cpp @@ -49,13 +49,13 @@ InputParser::Build(DataType dtype, double prescale, bool is_complex) } else if (dtype == DataType::kSignedInt64) { return std::make_unique>(prescale, is_complex); } else if (dtype == DataType::kUnsignedInt8) { - return std::make_unique>(prescale, is_complex); + return std::make_unique>(prescale, is_complex); } else if (dtype == DataType::kUnsignedInt16) { - return std::make_unique>(prescale, is_complex); + return std::make_unique>(prescale, is_complex); } else if (dtype == DataType::kUnsignedInt32) { - return std::make_unique>(prescale, is_complex); + return std::make_unique>(prescale, is_complex); } else if (dtype == DataType::kUnsignedInt64) { - return std::make_unique>(prescale, is_complex); + return std::make_unique>(prescale, is_complex); } else if (dtype == DataType::kFloat32) { return std::make_unique>(prescale, is_complex); } else if (dtype == DataType::kFloat64) { -- cgit v1.2.3