From d46d015fd5c89cfabd8cb7788f19409372706d5f Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:05:57 +0100 Subject: [PATCH] fix(telemetry): fix include ordering in PathFind span files Sort PathFindSpanNames.h after AssetCache.h alphabetically in PathRequestManager.cpp and Pathfinder.cpp to satisfy the project's include-order convention enforced by pre-commit hooks. Co-Authored-By: Claude Opus 4.6 --- src/xrpld/rpc/detail/PathRequestManager.cpp | 2 +- src/xrpld/rpc/detail/Pathfinder.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrpld/rpc/detail/PathRequestManager.cpp b/src/xrpld/rpc/detail/PathRequestManager.cpp index 9ebdf294a8..16e5def7c3 100644 --- a/src/xrpld/rpc/detail/PathRequestManager.cpp +++ b/src/xrpld/rpc/detail/PathRequestManager.cpp @@ -2,8 +2,8 @@ #include #include -#include #include +#include #include #include diff --git a/src/xrpld/rpc/detail/Pathfinder.cpp b/src/xrpld/rpc/detail/Pathfinder.cpp index c1f9151117..1f1034739e 100644 --- a/src/xrpld/rpc/detail/Pathfinder.cpp +++ b/src/xrpld/rpc/detail/Pathfinder.cpp @@ -1,8 +1,8 @@ #include #include -#include #include +#include #include #include #include