aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-10-05 13:34:24 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-10-08 15:54:50 +0200
commitfad55e79ca18a5894a8da6db6309c323eecbb178 (patch)
treea3669c648ef77358d02f85a9f671ad92e595b98b /src
parent927586990eb9bc8403a3831247847bdd3bf60423 (diff)
downloadbitcoin-fad55e79ca18a5894a8da6db6309c323eecbb178.tar.xz
doc: Fixup ToIntegral docs
Diffstat (limited to 'src')
-rw-r--r--src/util/strencodings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/strencodings.h b/src/util/strencodings.h
index 1f7762aeef..eedb5ec2f8 100644
--- a/src/util/strencodings.h
+++ b/src/util/strencodings.h
@@ -72,7 +72,7 @@ void SplitHostPort(std::string in, uint16_t& portOut, std::string& hostOut);
// LocaleIndependentAtoi is provided for backwards compatibility reasons.
//
-// New code should use the ParseInt64/ParseUInt64/ParseInt32/ParseUInt32 functions
+// New code should use ToIntegral or the ParseInt* functions
// which provide parse error feedback.
//
// The goal of LocaleIndependentAtoi is to replicate the exact defined behaviour
@@ -125,7 +125,7 @@ constexpr inline bool IsSpace(char c) noexcept {
/**
* Convert string to integral type T. Leading whitespace, a leading +, or any
* trailing character fail the parsing. The required format expressed as regex
- * is `-?[0-9]+`.
+ * is `-?[0-9]+`. The minus sign is only permitted for signed integer types.
*
* @returns std::nullopt if the entire string could not be parsed, or if the
* parsed value is not in the range representable by the type T.