aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-08-27 09:34:49 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-10-30 15:12:26 +0100
commitfaea58eee412d36a020aecf5568e4e3e1f0c5b22 (patch)
tree7e56c1f2ddbea1a3a3316cfa42d4f5ac90207919 /src/util
parent6391644b660740f479b915a9b34b0f287baaaac4 (diff)
downloadbitcoin-faea58eee412d36a020aecf5568e4e3e1f0c5b22.tar.xz
Bump g++ minimum supported version to 10
Also, enable -Werror=maybe-uninitialized in ci/test/00_setup_env_native_qt5.sh
Diffstat (limited to 'src/util')
-rw-r--r--src/util/hasher.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/hasher.h b/src/util/hasher.h
index 506ae9415d..3ad6d5bb94 100644
--- a/src/util/hasher.h
+++ b/src/util/hasher.h
@@ -45,7 +45,7 @@ public:
* a slight performance penalty (around 1.6%), but this is compensated by
* memory savings of about 9% which allow for a larger dbcache setting.
*
- * @see https://gcc.gnu.org/onlinedocs/gcc-9.2.0/libstdc++/manual/manual/unordered_associative.html
+ * @see https://gcc.gnu.org/onlinedocs/gcc-13.2.0/libstdc++/manual/manual/unordered_associative.html
*/
size_t operator()(const COutPoint& id) const noexcept {
return SipHashUint256Extra(k0, k1, id.hash, id.n);