Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
bkietz committed Oct 25, 2024
1 parent 602757f commit 32c4f59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/src/arrow/result.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

#include <string>

#include "arrow/util/logging.h"
#include "arrow/status_internal.h"
#include "arrow/util/logging.h"

namespace arrow::internal {

Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/result.h
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class [[nodiscard]] Result : public util::EqualityComparable<Result<T>> {
///
/// \return The stored non-OK status object, or an OK status if this object
/// has a value.
Status status() && {
Status status() && {
if (ARROW_PREDICT_TRUE(ok())) return Status::OK();
Status st = std::move(status_);
status_ = internal::UninitializedResult();
Expand Down

0 comments on commit 32c4f59

Please sign in to comment.