aboutsummaryrefslogtreecommitdiff
path: root/src/txrequest.cpp
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-05-15 15:03:30 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-05-18 12:24:40 +0200
commitfa953f15bfcf95df9aa9c91e1c4b56a205f4d1ae (patch)
tree2a7d8d9e87ebdebf95c81c296b5858fe7436109e /src/txrequest.cpp
parentfa69955e741dd60dc6160e81cf223bbecd286806 (diff)
downloadbitcoin-fa953f15bfcf95df9aa9c91e1c4b56a205f4d1ae.tar.xz
build: Bump minimum supported GCC to g++-9
Also, update the code to use constexpr, which does not work in g++-8. Also, drop the no longer needed build-aux/m4/l_filesystem.m4.
Diffstat (limited to 'src/txrequest.cpp')
-rw-r--r--src/txrequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txrequest.cpp b/src/txrequest.cpp
index 96a3d2eeeb..40d36132de 100644
--- a/src/txrequest.cpp
+++ b/src/txrequest.cpp
@@ -69,7 +69,7 @@ struct Announcement {
const bool m_is_wtxid : 1;
/** What state this announcement is in.
- * This is a uint8_t instead of a State to silence a GCC warning in versions prior to 8.4 and 9.3.
+ * This is a uint8_t instead of a State to silence a GCC warning in versions prior to 9.3.
* See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61414 */
uint8_t m_state : 3;