From ee8a1573204f76b16b9fb711608447aabee55696 Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Wed, 21 Jul 2021 21:14:30 +0300 Subject: Added header file comments for classes and methods. Renamed all factory methods to ::Build(). --- src/input-parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/input-parser.cpp') diff --git a/src/input-parser.cpp b/src/input-parser.cpp index b5dd55b..677aa48 100644 --- a/src/input-parser.cpp +++ b/src/input-parser.cpp @@ -38,7 +38,7 @@ InputParser::RemoveValues(std::size_t count) } std::unique_ptr -InputParser::FromDataType(DataType dtype, double prescale, bool is_complex) +InputParser::Build(DataType dtype, double prescale, bool is_complex) { if (dtype == DataType::kSignedInt8) { return std::make_unique>(prescale, is_complex); -- cgit v1.2.3