From 8459b9ccdb9b8ca9d23fa38b64ec9e540f535431 Mon Sep 17 00:00:00 2001 From: Szilard Szaloki Date: Mon, 9 Mar 2026 18:33:05 -0600 Subject: [PATCH] Fix `JSONEmptyBody` comparison duplicate symbol in debug builds (#34575) Fix JSONEmptyBody comparison duplicate symbol in debug builds --- components/brave_account/endpoint_client/client_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/brave_account/endpoint_client/client_unittest.cc b/components/brave_account/endpoint_client/client_unittest.cc index 5a769c1d5c3..9b4caee73ec 100644 --- a/components/brave_account/endpoint_client/client_unittest.cc +++ b/components/brave_account/endpoint_client/client_unittest.cc @@ -87,7 +87,7 @@ bool operator==(const JSONErrorBody& lhs, const JSONErrorBody& rhs) { return lhs.error == rhs.error; } -bool operator==(const JSONEmptyBody&, const JSONEmptyBody&) { +inline bool operator==(const JSONEmptyBody&, const JSONEmptyBody&) { return true; }