Skip to content

Commit 6bd63be

Browse files
committed
Updating version information to v18.1
1 parent 9c6e466 commit 6bd63be

File tree

142 files changed

+166
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+166
-166
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.13)
22

3-
project(ClangSharp VERSION 17.0.4)
3+
project(ClangSharp VERSION 18.1.3)
44

55
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<PackageValidationBaselineVersion>17.0.0</PackageValidationBaselineVersion>
4848
<Product>ClangSharp</Product>
4949
<RootNamespace>ClangSharp</RootNamespace>
50-
<VersionPrefix>17.0.2</VersionPrefix>
50+
<VersionPrefix>18.1.0</VersionPrefix>
5151
<VersionSuffix Condition="'$(EXCLUDE_SUFFIX_FROM_VERSION)' != 'true'">rc1</VersionSuffix>
5252
<VersionSuffix Condition="'$(GITHUB_EVENT_NAME)' == 'pull_request'">pr</VersionSuffix>
5353
</PropertyGroup>

Directory.Packages.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
<!-- Package versions for package references across all projects -->
1414
<ItemGroup>
15-
<PackageVersion Include="libClang" Version="17.0.4" />
16-
<PackageVersion Include="libClangSharp" Version="17.0.4" />
15+
<PackageVersion Include="libClang" Version="18.1.3" />
16+
<PackageVersion Include="libClangSharp" Version="18.1.3" />
1717
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1818
<PackageVersion Include="NUnit" Version="4.1.0" />
1919
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A convenience package which provides the native libClang library for several pla
1313

1414
A helper package which exposes many Clang APIs missing from libClang is provided here: https://www.nuget.org/packages/libClangSharp
1515

16-
**NOTE:** libclang and libClangSharp are meta-packages which point to the platform-specific runtime packages ([e.g.](https://www.nuget.org/packages/libClangSharp.runtime.win-x64/17.0.4); see others owned by [tannergooding](https://www.nuget.org/profiles/tannergooding)). Several manual steps may be required to use them, see discussion in [#46](https://github.com/dotnet/ClangSharp/issues/46) and [#118](https://github.com/dotnet/ClangSharp/issues/118).
16+
**NOTE:** libclang and libClangSharp are meta-packages which point to the platform-specific runtime packages ([e.g.](https://www.nuget.org/packages/libClangSharp.runtime.win-x64/18.1.3); see others owned by [tannergooding](https://www.nuget.org/profiles/tannergooding)). Several manual steps may be required to use them, see discussion in [#46](https://github.com/dotnet/ClangSharp/issues/46) and [#118](https://github.com/dotnet/ClangSharp/issues/118).
1717

1818
Nightly packages are available via the NuGet Feed URL: https://pkgs.clangsharp.dev/index.json
1919

@@ -77,7 +77,7 @@ To successfully build `libClangSharp` you must first build Clang (https://clang.
7777

7878
The process done on Windows is roughly:
7979
```cmd
80-
git clone --single-branch --branch llvmorg-17.0.4 https://github.com/llvm/llvm-project
80+
git clone --single-branch --branch llvmorg-18.1.3 https://github.com/llvm/llvm-project
8181
cd llvm-project
8282
mkdir artifacts/bin
8383
cd artifacts/bin
@@ -101,7 +101,7 @@ You can then open `libClangSharp.sln` in Visual Studio, change the configuration
101101

102102
The process done on Linux is roughly:
103103
```bash
104-
git clone --single-branch --branch llvmorg-17.0.4 https://github.com/llvm/llvm-project
104+
git clone --single-branch --branch llvmorg-18.1.3 https://github.com/llvm/llvm-project
105105
cd llvm-project
106106
mkdir -p artifacts/bin
107107
cd artifacts/bin
@@ -133,7 +133,7 @@ This program will take a given set of C or C++ header files and generate C# bind
133133

134134
The simplest and recommended setup is to install the generator as a .NET tool and then use response files:
135135
```
136-
dotnet tool install --global ClangSharpPInvokeGenerator --version 17.0.0
136+
dotnet tool install --global ClangSharpPInvokeGenerator --version 18.1.0
137137
ClangSharpPInvokeGenerator @generate.rsp
138138
```
139139

packages/libClangSharp/libClangSharp.runtime.linux-arm64/libClangSharp.runtime.linux-arm64.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp.runtime.linux-arm64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp.runtime.linux-x64/libClangSharp.runtime.linux-x64.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp.runtime.linux-x64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp.runtime.osx-arm64/libClangSharp.runtime.osx-arm64.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp.runtime.osx-arm64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp.runtime.osx-x64/libClangSharp.runtime.osx-x64.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp.runtime.osx-x64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp.runtime.win-arm64/libClangSharp.runtime.win-arm64.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp.runtime.win-arm64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp.runtime.win-x64/libClangSharp.runtime.win-x64.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp.runtime.win-x64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp/libClangSharp.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libClangSharp</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>

packages/libClangSharp/libClangSharp/runtime.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22
"runtimes": {
33
"linux-arm64": {
44
"libClangSharp": {
5-
"libClangSharp.runtime.linux-arm64": "17.0.4"
5+
"libClangSharp.runtime.linux-arm64": "18.1.3"
66
}
77
},
88
"linux-x64": {
99
"libClangSharp": {
10-
"libClangSharp.runtime.linux-x64": "17.0.4"
10+
"libClangSharp.runtime.linux-x64": "18.1.3"
1111
}
1212
},
1313
"osx-arm64": {
1414
"libClangSharp": {
15-
"libClangSharp.runtime.osx-arm64": "17.0.4"
15+
"libClangSharp.runtime.osx-arm64": "18.1.3"
1616
}
1717
},
1818
"osx-x64": {
1919
"libClangSharp": {
20-
"libClangSharp.runtime.osx-x64": "17.0.4"
20+
"libClangSharp.runtime.osx-x64": "18.1.3"
2121
}
2222
},
2323
"win-arm64": {
2424
"libClangSharp": {
25-
"libClangSharp.runtime.win-arm64": "17.0.4"
25+
"libClangSharp.runtime.win-arm64": "18.1.3"
2626
}
2727
},
2828
"win-x64": {
2929
"libClangSharp": {
30-
"libClangSharp.runtime.win-x64": "17.0.4"
30+
"libClangSharp.runtime.win-x64": "18.1.3"
3131
}
3232
}
3333
}

packages/libclang/libclang.runtime.linux-arm64/libclang.runtime.linux-arm64.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang.runtime.linux-arm64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>linux arm64 native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
</metadata>
1515
<files>
1616
<file src="..\libclang\LICENSE.TXT" target="LICENSE.TXT" />

packages/libclang/libclang.runtime.linux-x64/libclang.runtime.linux-x64.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang.runtime.linux-x64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>linux x64 native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
</metadata>
1515
<files>
1616
<file src="..\libclang\LICENSE.TXT" target="LICENSE.TXT" />

packages/libclang/libclang.runtime.osx-arm64/libclang.runtime.osx-arm64.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang.runtime.osx-arm64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>osx arm64 native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
</metadata>
1515
<files>
1616
<file src="..\libclang\LICENSE.TXT" target="LICENSE.TXT" />

packages/libclang/libclang.runtime.osx-x64/libclang.runtime.osx-x64.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang.runtime.osx-x64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>osx x64 native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
</metadata>
1515
<files>
1616
<file src="..\libclang\LICENSE.TXT" target="LICENSE.TXT" />

packages/libclang/libclang.runtime.win-arm64/libclang.runtime.win-arm64.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang.runtime.win-arm64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>win arm64 native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
</metadata>
1515
<files>
1616
<file src="..\libclang\LICENSE.TXT" target="LICENSE.TXT" />

packages/libclang/libclang.runtime.win-x64/libclang.runtime.win-x64.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang.runtime.win-x64</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>win x64 native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
</metadata>
1515
<files>
1616
<file src="..\libclang\LICENSE.TXT" target="LICENSE.TXT" />

packages/libclang/libclang/libclang.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libclang</id>
5-
<version>17.0.4</version>
5+
<version>18.1.3</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/clangsharp</projectUrl>
1111
<description>Multi-platform native library for libclang.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-17.0.4" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
1414
<dependencies>
1515
<group targetFramework=".NETStandard2.0" />
1616
</dependencies>

packages/libclang/libclang/runtime.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22
"runtimes": {
33
"linux-arm64": {
44
"libclang": {
5-
"libclang.runtime.linux-arm64": "17.0.4"
5+
"libclang.runtime.linux-arm64": "18.1.3"
66
}
77
},
88
"linux-x64": {
99
"libclang": {
10-
"libclang.runtime.linux-x64": "17.0.4"
10+
"libclang.runtime.linux-x64": "18.1.3"
1111
}
1212
},
1313
"osx-arm64": {
1414
"libclang": {
15-
"libclang.runtime.osx-arm64": "17.0.4"
15+
"libclang.runtime.osx-arm64": "18.1.3"
1616
}
1717
},
1818
"osx-x64": {
1919
"libclang": {
20-
"libclang.runtime.osx-x64": "17.0.4"
20+
"libclang.runtime.osx-x64": "18.1.3"
2121
}
2222
},
2323
"win-arm64": {
2424
"libclang": {
25-
"libclang.runtime.win-arm64": "17.0.4"
25+
"libclang.runtime.win-arm64": "18.1.3"
2626
}
2727
},
2828
"win-x64": {
2929
"libclang": {
30-
"libclang.runtime.win-x64": "17.0.4"
30+
"libclang.runtime.win-x64": "18.1.3"
3131
}
3232
}
3333
}

sources/ClangSharp.Interop/Manual/CXAPISetImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
namespace ClangSharp.Interop;

sources/ClangSharp.Interop/Manual/CXCursorSetImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
namespace ClangSharp.Interop;

sources/ClangSharp.Interop/Manual/CXCursorVisitor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
using System.Runtime.InteropServices;

sources/ClangSharp.Interop/Manual/CXFieldVisitor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
using System.Runtime.InteropServices;

sources/ClangSharp.Interop/Manual/CXInclusionVisitor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
using System.Runtime.InteropServices;

sources/ClangSharp.Interop/Manual/CXModuleMapDescriptorImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
namespace ClangSharp.Interop;

sources/ClangSharp.Interop/Manual/CXTargetInfoImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
namespace ClangSharp.Interop;

sources/ClangSharp.Interop/Manual/CXTranslationUnitImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
22

3-
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-17.0.4/clang/include/clang-c
3+
// Ported from https://github.com/llvm/llvm-project/tree/llvmorg-18.1.3/clang/include/clang-c
44
// Original source is Copyright (c) the LLVM Project and Contributors. Licensed under the Apache License v2.0 with LLVM Exceptions. See NOTICE.txt in the project root for license information.
55

66
namespace ClangSharp.Interop;

0 commit comments

Comments
 (0)