Skip to content

Commit

Permalink
clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
ckeshava committed Jun 14, 2023
1 parent d4047a4 commit fa4a5ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ripple/basics/mulDiv.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ auto constexpr muldiv_max = std::numeric_limits<std::uint64_t>::max();
None
Returns:
`std::optional`:
`std::nullopt` if the calculation overflows. Otherwise, `value * mul / div`.
`std::nullopt` if the calculation overflows. Otherwise, `value * mul
/ div`.
*/
std::optional<std::uint64_t>
mulDiv(std::uint64_t value, std::uint64_t mul, std::uint64_t div);
Expand Down
2 changes: 1 addition & 1 deletion src/ripple/beast/hash/impl/xxhash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ You can contact the author at :
//**************************************
// Includes & Memory related functions
//**************************************
//#include "xxhash.h"
// #include "xxhash.h"
// Modify the local functions below should you wish to use some other memory
// routines for malloc(), free()
#include <stdlib.h>
Expand Down

0 comments on commit fa4a5ca

Please sign in to comment.