Skip to content

Commit 76d26a6

Browse files
committed
xmake check-files -f
1 parent 9cb1b06 commit 76d26a6

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

include/NZSL/Ast/Transformations/LoopUnrollTransformer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#ifndef NZSL_AST_TRANSFORMATIONS_LOOPUNROLLTRANSFORMER_HPP
88
#define NZSL_AST_TRANSFORMATIONS_LOOPUNROLLTRANSFORMER_HPP
99

10-
#include <NZSL/Ast/Transformations/Transformer.hpp>
1110
#include <NazaraUtils/FixedVector.hpp>
11+
#include <NZSL/Ast/Transformations/Transformer.hpp>
1212

1313
namespace nzsl::Ast
1414
{

include/NZSL/ShaderBuilder.inl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ namespace nzsl::ShaderBuilder
435435
identifierValue->identifierType = type;
436436
identifierValue->identifierIndex = id;
437437
identifierValue->sourceLocation = sourceLocation;
438-
438+
439439
switch (type)
440440
{
441441
case Ast::IdentifierType::ExternalBlock: identifierValue->cachedExpressionType = Ast::NamedExternalBlockType{ id }; break;
@@ -476,7 +476,7 @@ namespace nzsl::ShaderBuilder
476476
auto identifierValue = std::make_unique<Ast::IdentifierValueExpression>();
477477
identifierValue->identifierType = Type;
478478
identifierValue->identifierIndex = id;
479-
479+
480480
switch (Type)
481481
{
482482
case Ast::IdentifierType::ExternalBlock: identifierValue->cachedExpressionType = Ast::NamedExternalBlockType{ id }; break;
@@ -497,7 +497,7 @@ namespace nzsl::ShaderBuilder
497497
identifierValue->identifierType = Type;
498498
identifierValue->identifierIndex = id;
499499
identifierValue->sourceLocation = sourceLocation;
500-
500+
501501
switch (Type)
502502
{
503503
case Ast::IdentifierType::ExternalBlock: identifierValue->cachedExpressionType = Ast::NamedExternalBlockType{ id }; break;

src/NZSL/Ast/Transformations/LoopUnrollTransformer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
#include <NZSL/Ast/Transformations/LoopUnrollTransformer.hpp>
66
#include <NZSL/Ast/Cloner.hpp>
7+
#include <NZSL/Ast/IndexRemapperVisitor.hpp>
78
#include <NZSL/Ast/Utils.hpp>
89
#include <NZSL/Lang/Errors.hpp>
910
#include <NZSL/Ast/Transformations/TransformerContext.hpp>
10-
#include <NZSL/Ast/IndexRemapperVisitor.hpp>
1111

1212
namespace nzsl::Ast
1313
{

src/NZSL/SpirV/SpirvAstVisitor.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,6 @@ namespace nzsl
932932

933933
PopResultId();
934934
}
935-
936935

937936
void SpirvAstVisitor::Visit(Ast::IdentifierValueExpression& node)
938937
{

0 commit comments

Comments
 (0)