summaryrefslogtreecommitdiff
path: root/source/core/slang-hash.h
diff options
context:
space:
mode:
authorjarcherNV <jarcher@nvidia.com>2025-03-06 19:16:27 -0800
committerGitHub <noreply@github.com>2025-03-07 03:16:27 +0000
commit9d7d943db47dd7805a710431cf7eedc0bec8ecc7 (patch)
tree851f51e2087f76b39ea19a8ca4ec8cf4555a4bb2 /source/core/slang-hash.h
parent2aaa91007a9f91674033dcb9d88eb9ad7bacae96 (diff)
Update build to allow setting external paths (#6528)
* Update build to allow setting external paths Update the build to allow setting user-specific paths for the external modules. This allows building Slang without also fetching the external modules, assuming they are already present elsewhere locally.
Diffstat (limited to 'source/core/slang-hash.h')
-rw-r--r--source/core/slang-hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-hash.h b/source/core/slang-hash.h
index ebe3d1973..eee58878b 100644
--- a/source/core/slang-hash.h
+++ b/source/core/slang-hash.h
@@ -1,10 +1,10 @@
#ifndef SLANG_CORE_HASH_H
#define SLANG_CORE_HASH_H
-#include "../../external/unordered_dense/include/ankerl/unordered_dense.h"
#include "slang-math.h"
#include "slang.h"
+#include <ankerl/unordered_dense.h>
#include <cstring>
#include <type_traits>