From 5d25a82b9a5e54f74cc066599541bc1d3da70988 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Tue, 16 Jul 2024 22:23:53 +0100 Subject: [PATCH] univalue, refactor: Convert indentation tabs to spaces --- src/univalue/test/object.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/univalue/test/object.cpp b/src/univalue/test/object.cpp index 1c724555f3..c5f15ff474 100644 --- a/src/univalue/test/object.cpp +++ b/src/univalue/test/object.cpp @@ -21,16 +21,16 @@ (stmt); \ assert(0 && "No exception caught"); \ } catch (excMatch & e) { \ - } catch (...) { \ - assert(0 && "Wrong exception caught"); \ - } \ + } catch (...) { \ + assert(0 && "Wrong exception caught"); \ + } \ } #define BOOST_CHECK_NO_THROW(stmt) { \ try { \ (stmt); \ - } catch (...) { \ - assert(0); \ - } \ + } catch (...) { \ + assert(0); \ + } \ } void univalue_constructor()