Browse Source

Whitespace fixes.

pull/86/head
triton 12 years ago
parent
commit
98e4c52beb
  1. 3
      src/Parser/Options.h
  2. 1
      src/Parser/Parser.cpp

3
src/Parser/Options.h

@ -6,7 +6,6 @@
************************************************************************/ ************************************************************************/
#using <CppSharp.AST.dll> #using <CppSharp.AST.dll>
#include <vcclr.h>
using namespace System::Collections::Generic; using namespace System::Collections::Generic;
public enum struct CppAbi public enum struct CppAbi
@ -80,7 +79,7 @@ public ref struct ParserResult
{ {
ParserResult() ParserResult()
{ {
Diagnostics = gcnew List<ParserDiagnostic>(); Diagnostics = gcnew List<ParserDiagnostic>();
} }
ParserResultKind Kind; ParserResultKind Kind;

1
src/Parser/Parser.cpp

@ -480,7 +480,6 @@ Parser::WalkVTableLayout(const clang::VTableLayout& VTLayout)
return Layout; return Layout;
} }
void Parser::WalkVTable(clang::CXXRecordDecl* RD, CppSharp::AST::Class^ C) void Parser::WalkVTable(clang::CXXRecordDecl* RD, CppSharp::AST::Class^ C)
{ {
using namespace clang; using namespace clang;

Loading…
Cancel
Save