From 62dbd3d1d3563fb06b7e8d5a04585bba91215f5a Mon Sep 17 00:00:00 2001 From: JCW Date: Mon, 2 Jun 2025 18:39:02 +0100 Subject: [PATCH] Cleanup --- include/xrpl/beast/hash/xxhasher.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/xrpl/beast/hash/xxhasher.h b/include/xrpl/beast/hash/xxhasher.h index 636ade322a..59e4c3649e 100644 --- a/include/xrpl/beast/hash/xxhasher.h +++ b/include/xrpl/beast/hash/xxhasher.h @@ -65,7 +65,6 @@ private: static XXH3_state_t* allocState() { - FunctionProfiler _{"-alloc"}; auto ret = XXH3_createState(); if (ret == nullptr) throw std::bad_alloc(); @@ -122,7 +121,6 @@ public: #if ORIGINAL_HASH ~xxhasher() noexcept { - FunctionProfiler _{"-free"}; XXH3_freeState(state_); } #endif