Skip to content

Commit

Permalink
Merge branch 'feature/new-backend-sdk' of https://github.com/Socordia…
Browse files Browse the repository at this point in the history
…-Org/Socordia into feature/new-backend-sdk
  • Loading branch information
furesoft committed Feb 6, 2025
2 parents 945d1e6 + 26a4dfc commit 4a38683
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ namespace Socordia.CodeAnalysis.AST.TypeNames;

public class NoTypeName : TypeName
{

}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected override void ListenToNode(Driver context, EnumDeclaration node)
// .field public static literal valuetype Color R = int32(0)
for (int memberIndex = 0; memberIndex < node.Children.Count; memberIndex++)
{
var member = (EnumMemberDeclaration)node.Children[memberIndex];;
var member = (EnumMemberDeclaration)node.Children[memberIndex];

if (member.Value is EmptyNode)
{
Expand Down

0 comments on commit 4a38683

Please sign in to comment.