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