@@ -211,8 +211,7 @@ class ICEBERG_EXPORT AddSortOrder : public TableUpdate {
211211// / \brief Represents setting the default sort order
212212class ICEBERG_EXPORT SetDefaultSortOrder : public TableUpdate {
213213 public:
214- explicit SetDefaultSortOrder (int32_t sort_order_id)
215- : sort_order_id_(sort_order_id) {}
214+ explicit SetDefaultSortOrder (int32_t sort_order_id) : sort_order_id_(sort_order_id) {}
216215
217216 int32_t sort_order_id () const { return sort_order_id_; }
218217
@@ -259,8 +258,7 @@ class ICEBERG_EXPORT RemoveSnapshots : public TableUpdate {
259258// / \brief Represents removing a snapshot reference
260259class ICEBERG_EXPORT RemoveSnapshotRef : public TableUpdate {
261260 public:
262- explicit RemoveSnapshotRef (std::string ref_name)
263- : ref_name_(std::move(ref_name)) {}
261+ explicit RemoveSnapshotRef (std::string ref_name) : ref_name_(std::move(ref_name)) {}
264262
265263 const std::string& ref_name () const { return ref_name_; }
266264
@@ -276,9 +274,9 @@ class ICEBERG_EXPORT RemoveSnapshotRef : public TableUpdate {
276274class ICEBERG_EXPORT SetSnapshotRef : public TableUpdate {
277275 public:
278276 SetSnapshotRef (std::string ref_name, int64_t snapshot_id, SnapshotRefType type,
279- std::optional<int32_t > min_snapshots_to_keep = std::nullopt ,
280- std::optional<int64_t > max_snapshot_age_ms = std::nullopt ,
281- std::optional<int64_t > max_ref_age_ms = std::nullopt )
277+ std::optional<int32_t > min_snapshots_to_keep = std::nullopt ,
278+ std::optional<int64_t > max_snapshot_age_ms = std::nullopt ,
279+ std::optional<int64_t > max_ref_age_ms = std::nullopt )
282280 : ref_name_(std::move(ref_name)),
283281 snapshot_id_ (snapshot_id),
284282 type_(type),
0 commit comments