Browse Source

Fix formatting to of Declaration.GenerationKind to ease debugging.

pull/1359/head
João Matos 5 years ago committed by João Matos
parent
commit
f5d4a5d59c
  1. 6
      src/AST/Declaration.cs

6
src/AST/Declaration.cs

@ -60,7 +60,11 @@ namespace CppSharp.AST @@ -60,7 +60,11 @@ namespace CppSharp.AST
return GenerationKind.Generate;
}
set { generationKind = value; }
set
{
generationKind = value;
}
}
/// <summary>

Loading…
Cancel
Save