Skip to content

Commit

Permalink
autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Mar 20, 2024
1 parent e6e48bc commit 49ce158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/stim/util_bot/twiddle.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
namespace stim {

inline uint8_t floor_lg2(size_t value) {
return sizeof(value)*8 - 1 - std::countl_zero(value);
return sizeof(value) * 8 - 1 - std::countl_zero(value);
}

inline size_t first_set_bit(size_t value, size_t min_result) {
Expand Down
1 change: 1 addition & 0 deletions src/stim/util_bot/twiddle.test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// limitations under the License.

#include "stim/util_bot/twiddle.h"

#include <bit>

#include "gtest/gtest.h"
Expand Down

0 comments on commit 49ce158

Please sign in to comment.