Browse Source

Cleanup

pull/1918/head
duckdoom5 4 months ago
parent
commit
da6a9d4946
  1. 10
      src/CppParser/Decl.h

10
src/CppParser/Decl.h

@ -10,11 +10,10 @@ @@ -10,11 +10,10 @@
#include "Helpers.h"
#include "Sources.h"
#include "Types.h"
#include <algorithm>
namespace CppSharp {
namespace CppParser {
namespace AST {
namespace CppSharp::CppParser::AST {
enum class DeclarationKind
{
@ -819,7 +818,7 @@ namespace AST { @@ -819,7 +818,7 @@ namespace AST {
{
public:
TranslationUnit();
~TranslationUnit();
std::string fileName;
bool isSystemHeader;
VECTOR(MacroDefinition*, Macros)
@ -833,7 +832,4 @@ namespace AST { @@ -833,7 +832,4 @@ namespace AST {
TranslationUnit* FindOrCreateModule(const std::string& File);
VECTOR(TranslationUnit*, TranslationUnits)
};
}
}
} // namespace CppSharp::CppParser::AST
Loading…
Cancel
Save