diff --git a/runtime-light/tl/tl-core.h b/runtime-light/tl/tl-core.h index ba179db59c..b5414300cb 100644 --- a/runtime-light/tl/tl-core.h +++ b/runtime-light/tl/tl-core.h @@ -74,8 +74,7 @@ class TLBuffer : private vk::not_copyable { } template - requires std::convertible_to - void store_trivial(const U &t) noexcept { + requires std::convertible_to void store_trivial(const U &t) noexcept { // Here we rely on that endianness of architecture is Little Endian store_bytes(reinterpret_cast(std::addressof(t)), sizeof(T)); } diff --git a/runtime-light/utils/utils.cmake b/runtime-light/utils/utils.cmake index 2106bb3bb7..b25f9b6b3d 100644 --- a/runtime-light/utils/utils.cmake +++ b/runtime-light/utils/utils.cmake @@ -1,4 +1,4 @@ -prepend(RUNTIME_UTILS_SRC ${BASE_DIR}/runtime-light/utils/ +prepend(RUNTIME_UTILS_SRC utils/ php_assert.cpp json-functions.cpp context.cpp