We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 331bc26 commit 235d329Copy full SHA for 235d329
2 files changed
Libs/Framework/Src/AST/Utils/Statements.cpp
@@ -222,7 +222,7 @@ namespace Rift::AST::Statements
222
id = access.Get<const CStmtOutput>(id).linkInputNode;
223
}
224
225
- if (const auto* outputs = access.TryGet<const CStmtOutputs>(id))
+ if (access.Has<CStmtOutputs>(id))
226
{
227
splitStmtId = id;
228
Tests/AST/Statements.spec.cpp
@@ -13,14 +13,6 @@ using namespace bandit;
13
using namespace Rift;
14
15
16
-struct Type
17
-{
18
- bool value = false;
19
-};
20
-struct TypeTwo
21
-{};
22
-
23
24
go_bandit([]() {
25
describe("AST.Statements", []() {
26
it("Initializes outputs correctly", [&]() {
0 commit comments