Skip to content

Commit

Permalink
Clang format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Sep 26, 2024
1 parent 3066b75 commit 727e052
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cpp/include/Ice/Proxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ namespace Ice
template<class Rep, class Period>
Prx ice_invocationTimeout(const std::chrono::duration<Rep, Period>& timeout) const
{
return fromReference(asPrx()._invocationTimeout(std::chrono::duration_cast<std::chrono::milliseconds>(timeout)));
return fromReference(
asPrx()._invocationTimeout(std::chrono::duration_cast<std::chrono::milliseconds>(timeout)));
}

/**
Expand Down Expand Up @@ -210,7 +211,8 @@ namespace Ice
template<class Rep, class Period>
Prx ice_locatorCacheTimeout(const std::chrono::duration<Rep, Period>& timeout) const
{
return fromReference(asPrx()._locatorCacheTimeout(std::chrono::duration_cast<std::chrono::seconds>(timeout)));
return fromReference(
asPrx()._locatorCacheTimeout(std::chrono::duration_cast<std::chrono::seconds>(timeout)));
}

/**
Expand Down

0 comments on commit 727e052

Please sign in to comment.