clang format

This commit is contained in:
psucien 2024-07-20 11:12:37 +02:00 committed by IndecisiveTurtle
parent 4d3b993285
commit 1f60b3d3d2
3 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@
namespace Shader::IR {
template <typename Pred>
auto BreadthFirstSearch(const Value& value,
Pred&& pred) -> std::invoke_result_t<Pred, const Inst*> {
auto BreadthFirstSearch(const Value& value, Pred&& pred)
-> std::invoke_result_t<Pred, const Inst*> {
if (value.IsImmediate()) {
// Nothing to do with immediates
return std::nullopt;