fix: Include <functional> header in Number.h (#6254)

The `Number.h` header file now has `std::reference_wrapper` from `<functional>`, but the include is missing, causing downstream build problems. This change adds the header.
This commit is contained in:
Ayaz Salikhov
2026-01-21 23:52:22 +00:00
committed by GitHub
parent a37c556079
commit 4cd6cc3e01

View File

@@ -4,6 +4,7 @@
#include <xrpl/beast/utility/instrumentation.h>
#include <cstdint>
#include <functional>
#include <limits>
#include <optional>
#include <ostream>