Skip to content

Commit

Permalink
put a space after if keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
kuron99 committed Dec 16, 2024
1 parent 6226c8e commit 5b11549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/interface_scan.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ scan(tree_instance* ti, std::string_view l_key, scan_endpoint l_end,
traverse_key_view.size());
}
}
if(right_to_left) {
if (right_to_left) {
// assuming r_end == scan_endpoint::INF
// put maximum value of key_slice
key_slice = ~key_slice_type{0};
Expand Down
2 changes: 1 addition & 1 deletion include/scan_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ scan(base_node* const root, const std::string_view l_key,
} else {
if (!l_key.empty()) { memcpy(&ks, l_key.data(), l_key.size()); }
}
if(right_to_left) {
if (right_to_left) {
// assuming r_end == scan_endpoint::INF
// put maximum value of key_slice
ks = ~key_slice_type{0};
Expand Down

0 comments on commit 5b11549

Please sign in to comment.