Skip to content

Commit 7419034

Browse files
committed
Fix indents and typos
1 parent 9195604 commit 7419034

4 files changed

Lines changed: 526 additions & 508 deletions

File tree

File renamed without changes.

include/scale/outcome/outcome_throw.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace scale {
1616
* @param t error value
1717
*/
1818
template <typename T, typename = std::enable_if_t<std::is_enum_v<T>>>
19-
[[noreturn]] void raise (T t) {
19+
[[noreturn]] void raise(T t) {
2020
std::error_code ec = make_error_code(t);
2121
boost::throw_exception(std::system_error(ec));
2222
}

0 commit comments

Comments
 (0)