Skip to content

Commit

Permalink
- fix compilation on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Nov 7, 2024
1 parent 8448dfb commit 30ce85b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion currentGitHash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
776880d9795370ce319abb2971bfdd63cb72fae6
8448dfb1de3d35b54e3738b7663f60ea454ba729
2 changes: 1 addition & 1 deletion hi_backend/backend/currentGit.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define PREVIOUS_HISE_COMMIT "776880d9795370ce319abb2971bfdd63cb72fae6"
#define PREVIOUS_HISE_COMMIT "8448dfb1de3d35b54e3738b7663f60ea454ba729"
2 changes: 1 addition & 1 deletion hi_tools/hi_neural/onnx_loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ONNXLoader: public ReferenceCountedObject

template <typename Func> Func getFunction(const String& name)
{
if(auto f = static_cast<Func>(dll->getFunction(name)))
if(auto f = reinterpret_cast<Func>(dll->getFunction(name)))
return f;
else
{
Expand Down

0 comments on commit 30ce85b

Please sign in to comment.