Skip to content

Commit

Permalink
chore: update LLVM commit hash
Browse files Browse the repository at this point in the history
  • Loading branch information
sdkrystian committed Jul 29, 2024
1 parent 217ad91 commit 75a2785
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ jobs:
- name: LLVM Parameters
id: llvm-parameters
run: |
echo -E "llvm-hash=7a28a5b3fee6c78ad59af79a3d03c00db153c49f" >> $GITHUB_OUTPUT
echo -E "llvm-id=7a28a5b3" >> $GITHUB_OUTPUT
echo -E "llvm-hash=e1065370aaacb1b1cb48e77d37d376bf024f4a39" >> $GITHUB_OUTPUT
echo -E "llvm-id=e1065370" >> $GITHUB_OUTPUT
echo -E "llvm-build-preset=${{ runner.os == 'Windows' && 'release-win' || 'release-unix' }}" >> $GITHUB_OUTPUT
cd ..
llvm_root=$(pwd)/third-party/llvm-project/install
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg
=== LLVM

MrDocs uses LLVM to parse C++ code and extract documentation from it.
It depends on a recent version of LLVM: https://github.com/llvm/llvm-project/tree/7a28a5b3fee6c78ad59af79a3d03c00db153c49f[7a28a5b3]
It depends on a recent version of LLVM: https://github.com/llvm/llvm-project/tree/e1065370aaacb1b1cb48e77d37d376bf024f4a39[e1065370]

**Download**:

Expand All @@ -310,7 +310,7 @@ mkdir -p llvm-project <.>
cd llvm-project
git init <.>
git remote add origin https://github.com/llvm/llvm-project.git <.>
git fetch --depth 1 origin 7a28a5b3fee6c78ad59af79a3d03c00db153c49f <.>
git fetch --depth 1 origin e1065370aaacb1b1cb48e77d37d376bf024f4a39 <.>
git checkout FETCH_HEAD <.>
----

Expand Down
2 changes: 1 addition & 1 deletion src/lib/AST/ASTVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4430,7 +4430,7 @@ class ASTVisitorConsumer
void HandleTagDeclRequiredDefinition(const TagDecl*) override { }
void HandleInterestingDecl(DeclGroupRef) override { }
void CompleteTentativeDefinition(VarDecl*) override { }
void CompleteExternalDeclaration(VarDecl*) override { }
void CompleteExternalDeclaration(DeclaratorDecl*) override { }
void AssignInheritanceModel(CXXRecordDecl*) override { }
void HandleVTable(CXXRecordDecl*) override { }
void HandleImplicitImportDecl(ImportDecl*) override { }
Expand Down

0 comments on commit 75a2785

Please sign in to comment.