Skip to content

Commit

Permalink
Fix namespace on strhash call
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Kulla <ckulla@gmail.com>
  • Loading branch information
fpsunflower committed May 3, 2024
1 parent b0449df commit 8f0daee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liboslexec/batched_llvm_instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ struct CStrHash {
OSL_FORCEINLINE size_t operator()(const char* str) const
{
OSL_DASSERT(str != nullptr);
return OIIO::strhash(str);
return OIIO::Strutil::strhash(str);
}
};

Expand Down

0 comments on commit 8f0daee

Please sign in to comment.