Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HansKristian-Work/dxil-spirv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Kristian Arntzen <post@arntzen-software.no>2019-11-27 14:17:40 +0300
committerHans-Kristian Arntzen <post@arntzen-software.no>2019-11-27 14:17:40 +0300
commita02a32b44d9e418856ed778db766f8b8afda65b9 (patch)
tree5fb627b8f2e65eadc2db3d8d3ab30d80038b7355 /node.hpp
parent85f7eb434e9e6d8ab29a909420c4992e604187c9 (diff)
Run format_all.sh.
Diffstat (limited to 'node.hpp')
-rw-r--r--node.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/node.hpp b/node.hpp
index c559c53..6c2b5ac 100644
--- a/node.hpp
+++ b/node.hpp
@@ -19,10 +19,10 @@
#pragma once
#include "ir.hpp"
+#include <stdint.h>
#include <string>
#include <unordered_set>
#include <vector>
-#include <stdint.h>
namespace DXIL2SPIRV
{
@@ -121,8 +121,8 @@ void CFGNode::traverse_dominated_blocks_and_rewrite_branch(CFGNode *from, CFGNod
traverse_dominated_blocks_and_rewrite_branch(*this, from, to, op);
}
template <typename Op>
-void CFGNode::traverse_dominated_blocks_and_rewrite_branch(const CFGNode &header, CFGNode *from,
- CFGNode *to, const Op &op)
+void CFGNode::traverse_dominated_blocks_and_rewrite_branch(const CFGNode &header, CFGNode *from, CFGNode *to,
+ const Op &op)
{
if (from == to)
return;
@@ -163,4 +163,4 @@ void CFGNode::traverse_dominated_blocks(const Op &op)
traverse_dominated_blocks(*this, op);
}
-}
+} // namespace DXIL2SPIRV