util/NumberParser: rename to CNumberParser

A new NumberParser library based on std::from_chars() will be added.
This commit is contained in:
Max Kellermann
2024-01-04 20:59:16 +01:00
parent b283fe07af
commit 393d57b387
19 changed files with 18 additions and 18 deletions
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: BSD-2-Clause
// author: Max Kellermann <max.kellermann@gmail.com>
#include "NumberParser.hxx"
#include "CNumberParser.hxx"
#include <algorithm>
#include <iterator>
+1 -1
View File
@@ -3,7 +3,7 @@ util = static_library(
'Exception.cxx',
'UTF8.cxx',
'MimeType.cxx',
'NumberParser.cxx',
'CNumberParser.cxx',
'TruncateString.cxx',
'StringStrip.cxx',
'StringUtil.cxx',