Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Feb 23, 2024
1 parent 443c2d7 commit 58c69f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Framework/Core/include/Framework/TMessageSerializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ struct TMessageSerializer {
CompressionLevel compressionLevel = -1);

template <typename T>
static void serialize(FairTMessage& msg, const T* input, //
const TClass* cl,
static void serialize(FairTMessage& msg, const T* input, //
const TClass* cl,
CompressionLevel compressionLevel = -1);

template <typename T = TObject>
Expand All @@ -86,7 +86,7 @@ inline void TMessageSerializer::serialize(FairTMessage& tm, const TObject* input
}

template <typename T>
inline void TMessageSerializer::serialize(FairTMessage& tm, const T* input, //
inline void TMessageSerializer::serialize(FairTMessage& tm, const T* input, //
const TClass* cl, CompressionLevel compressionLevel)
{
if (compressionLevel >= 0) {
Expand Down Expand Up @@ -149,8 +149,8 @@ inline void TMessageSerializer::Serialize(fair::mq::Message& msg, const TObject*
}

template <typename T>
inline void TMessageSerializer::Serialize(fair::mq::Message& msg, const T* input, //
const TClass* cl, //
inline void TMessageSerializer::Serialize(fair::mq::Message& msg, const T* input, //
const TClass* cl, //
TMessageSerializer::CompressionLevel compressionLevel)
{
std::unique_ptr<FairTMessage> tm = std::make_unique<FairTMessage>(kMESS_OBJECT);
Expand Down

0 comments on commit 58c69f0

Please sign in to comment.