Skip to content

Commit

Permalink
More changes from PS to fix UWP compilation issues (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: jared wyles <[email protected]>
  • Loading branch information
jaredwy and jaredadobe authored Sep 14, 2021
1 parent de1c85c commit 5ced8bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adobe/name.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ constexpr std::size_t name_hash(const char* str, std::size_t len, std::size_t n,
static_assert(sizeok_k, "Unknown sizeof std::size_t (must be 4 or 8).");

return n < len ? name_hash(str, len, n + 1,
(state xor static_cast<std::size_t>(str[n])) * name_fnv_prime_k)
(state ^ static_cast<std::size_t>(str[n])) * name_fnv_prime_k)
: state;
}

Expand Down
2 changes: 1 addition & 1 deletion source/zuid_sys_dep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ adobe::md5_t::digest_t get_generic_random_info() {

/**************************************************************************************************/

#if ADOBE_PLATFORM_WIN
#if ADOBE_PLATFORM_WIN && !BOOST_PLAT_WINDOWS_UWP

/**************************************************************************************************/

Expand Down

0 comments on commit 5ced8bf

Please sign in to comment.