Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Sep 22, 2023
1 parent 2468d2d commit dd2bf59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ecsact/wasm/detail/cpp_util.hh
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ template<typename... Ts>
struct overloaded : Ts... {
using Ts::operator()...;
};

template<typename... Ts>
overloaded(Ts...) -> overloaded<Ts...>;
2 changes: 1 addition & 1 deletion ecsact/wasm/detail/guest_imports.hh
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ using allowed_guest_imports_t = std::unordered_map<
using allowed_guest_modules_t = std::unordered_map<
std::string_view, // Module name
allowed_guest_imports_t>;
} // namespace ecsactsi_wasm::detail
} // namespace ecsact::wasm::detail
2 changes: 1 addition & 1 deletion ecsact/wasm/detail/mem_stack.hh
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ template<typename T>
auto call_mem_replace(std::int32_t offset, T value) -> void {
call_mem_read<T>(offset, typeid(T)) = value;
}
} // namespace ecsactsi_wasm::detail
} // namespace ecsact::wasm::detail
2 changes: 1 addition & 1 deletion ecsact/wasm/detail/wasi_fs.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ auto fdstat(int32_t fd) -> ecsactsi_wasi_fdstat_t;
auto fdstat(std::string_view virtual_path) -> ecsactsi_wasi_fdstat_t;
auto ensure_open(int32_t pseudo_fd) -> std::FILE*;
auto close(int32_t pseudo_fd) -> void;
} // namespace ecsactsi_wasi::detail::fs
} // namespace ecsact::wasm::detail::wasi::fs

0 comments on commit dd2bf59

Please sign in to comment.