From d63697c9f6239969aa05df4d0239425747504680 Mon Sep 17 00:00:00 2001 From: Felipe Garay Date: Thu, 4 Jan 2024 15:39:45 -0800 Subject: [PATCH] odb: dbStream.h clang-format Signed-off-by: Felipe Garay --- src/odb/include/odb/dbStream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/odb/include/odb/dbStream.h b/src/odb/include/odb/dbStream.h index c49688c593d..c2ff2702d7a 100644 --- a/src/odb/include/odb/dbStream.h +++ b/src/odb/include/odb/dbStream.h @@ -400,7 +400,7 @@ class dbIStream return *this; } else { *this >> std::get(tup); - return ((*this).operator>> (tup)); + return ((*this).operator>>(tup)); } } @@ -435,7 +435,7 @@ class dbIStream if (I == index) { *this >> std::get(v); } - return ((*this).operator>> (v)); + return ((*this).operator>>(v)); } } };