Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jagprog5 committed Aug 5, 2023
1 parent cc1ae5b commit 69eaac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/numeric_utils.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once
#include <limits>
#include <optional>
#include <tuple>
#include <type_traits>

namespace choose {
Expand Down
2 changes: 1 addition & 1 deletion src/ordered_op.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ struct ReplaceOp {
struct IndexOp {
enum Align { BEFORE, AFTER };
IndexOp(Align align) : align(align) {}
size_t index;
size_t index = 0;
Align align;

private:
Expand Down

0 comments on commit 69eaac0

Please sign in to comment.