Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardnormier committed Mar 13, 2024
1 parent c7b3ec4 commit c75d5fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/src/Ice/ConnectionI.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ namespace Ice
IceInternal::EndpointIPtr endpoint() const;
IceInternal::ConnectorPtr connector() const;

virtual void setAdapter(const ObjectAdapterPtr&); // From Connection.
virtual void setAdapter(const ObjectAdapterPtr&); // From Connection.
virtual ObjectAdapterPtr getAdapter() const noexcept; // From Connection.
virtual EndpointPtr getEndpoint() const noexcept; // From Connection.
virtual ObjectPrx createProxy(const Identity& ident) const; // From Connection.
Expand Down
6 changes: 5 additions & 1 deletion cpp/src/Ice/ObjectAdapterI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ namespace
instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.Warn.Dispatch", 1);
if (warningLevel > 0)
{
dispatcher = make_shared<LoggerMiddleware>(std::move(dispatcher), logger, warningLevel, instance->toStringMode());
dispatcher = make_shared<LoggerMiddleware>(
std::move(dispatcher),
logger,
warningLevel,
instance->toStringMode());
}
}
return dispatcher;
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/Ice/ObjectAdapterI.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ namespace Ice

// The dispatch pipeline is the dispatcher plus the logger and observer middleware. They are installed in the
// dispatch pipeline only when the communicator configuration enables them.
const Ice::ObjectPtr& dispatchPipeline() const noexcept { return _dispatchPipeline;}
const Ice::ObjectPtr& dispatchPipeline() const noexcept { return _dispatchPipeline; }

ObjectAdapterI(
const IceInternal::InstancePtr&,
Expand Down

0 comments on commit c75d5fd

Please sign in to comment.