From 876ff6f9bbc2679acf809badccc17cd242235132 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Sun, 27 Oct 2024 19:18:51 +0000 Subject: [PATCH] Re-generate. --- .../Bindings/CSharp/arm64-apple-darwin/Std-symbols.cpp | 2 -- src/CppParser/Bindings/CSharp/i686-apple-darwin/Std-symbols.cpp | 2 -- .../Bindings/CSharp/x86_64-apple-darwin/Std-symbols.cpp | 2 -- .../Bindings/CSharp/x86_64-linux-gnu-cxx11abi/Std-symbols.cpp | 2 -- src/CppParser/Bindings/CSharp/x86_64-linux-gnu/Std-symbols.cpp | 2 -- src/Generator/Passes/SymbolsCodeGenerator.cs | 2 -- 6 files changed, 12 deletions(-) diff --git a/src/CppParser/Bindings/CSharp/arm64-apple-darwin/Std-symbols.cpp b/src/CppParser/Bindings/CSharp/arm64-apple-darwin/Std-symbols.cpp index c200261ab..6d8a95789 100644 --- a/src/CppParser/Bindings/CSharp/arm64-apple-darwin/Std-symbols.cpp +++ b/src/CppParser/Bindings/CSharp/arm64-apple-darwin/Std-symbols.cpp @@ -1,6 +1,4 @@ #define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -#define _LIBCPP_HIDE_FROM_ABI -#define _LIBCPP_NO_ABI_TAG #define _LIBCPP_HAS_NO_EXCEPTIONS #include diff --git a/src/CppParser/Bindings/CSharp/i686-apple-darwin/Std-symbols.cpp b/src/CppParser/Bindings/CSharp/i686-apple-darwin/Std-symbols.cpp index c200261ab..6d8a95789 100644 --- a/src/CppParser/Bindings/CSharp/i686-apple-darwin/Std-symbols.cpp +++ b/src/CppParser/Bindings/CSharp/i686-apple-darwin/Std-symbols.cpp @@ -1,6 +1,4 @@ #define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -#define _LIBCPP_HIDE_FROM_ABI -#define _LIBCPP_NO_ABI_TAG #define _LIBCPP_HAS_NO_EXCEPTIONS #include diff --git a/src/CppParser/Bindings/CSharp/x86_64-apple-darwin/Std-symbols.cpp b/src/CppParser/Bindings/CSharp/x86_64-apple-darwin/Std-symbols.cpp index c200261ab..6d8a95789 100644 --- a/src/CppParser/Bindings/CSharp/x86_64-apple-darwin/Std-symbols.cpp +++ b/src/CppParser/Bindings/CSharp/x86_64-apple-darwin/Std-symbols.cpp @@ -1,6 +1,4 @@ #define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -#define _LIBCPP_HIDE_FROM_ABI -#define _LIBCPP_NO_ABI_TAG #define _LIBCPP_HAS_NO_EXCEPTIONS #include diff --git a/src/CppParser/Bindings/CSharp/x86_64-linux-gnu-cxx11abi/Std-symbols.cpp b/src/CppParser/Bindings/CSharp/x86_64-linux-gnu-cxx11abi/Std-symbols.cpp index 60929cf6f..80aec5d8a 100644 --- a/src/CppParser/Bindings/CSharp/x86_64-linux-gnu-cxx11abi/Std-symbols.cpp +++ b/src/CppParser/Bindings/CSharp/x86_64-linux-gnu-cxx11abi/Std-symbols.cpp @@ -1,6 +1,4 @@ #define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -#define _LIBCPP_HIDE_FROM_ABI -#define _LIBCPP_NO_ABI_TAG #define _LIBCPP_HAS_NO_EXCEPTIONS #include diff --git a/src/CppParser/Bindings/CSharp/x86_64-linux-gnu/Std-symbols.cpp b/src/CppParser/Bindings/CSharp/x86_64-linux-gnu/Std-symbols.cpp index bc86a88e4..e2f189891 100644 --- a/src/CppParser/Bindings/CSharp/x86_64-linux-gnu/Std-symbols.cpp +++ b/src/CppParser/Bindings/CSharp/x86_64-linux-gnu/Std-symbols.cpp @@ -1,6 +1,4 @@ #define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -#define _LIBCPP_HIDE_FROM_ABI -#define _LIBCPP_NO_ABI_TAG #define _LIBCPP_HAS_NO_EXCEPTIONS #include diff --git a/src/Generator/Passes/SymbolsCodeGenerator.cs b/src/Generator/Passes/SymbolsCodeGenerator.cs index f7d75bbaa..b2b8c4b93 100644 --- a/src/Generator/Passes/SymbolsCodeGenerator.cs +++ b/src/Generator/Passes/SymbolsCodeGenerator.cs @@ -31,8 +31,6 @@ public override void Process() if (TranslationUnit.Module == Options.SystemModule) { WriteLine("#define _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS"); - WriteLine("#define _LIBCPP_HIDE_FROM_ABI"); - WriteLine("#define _LIBCPP_NO_ABI_TAG"); if (!Context.ParserOptions.EnableExceptions) WriteLine("#define _LIBCPP_HAS_NO_EXCEPTIONS"); NewLine();