Skip to content

Commit

Permalink
#3807 add explicit 'noexcept'
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Mar 29, 2023
1 parent 3803f14 commit a3cd65e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/buffers/xxh.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ cdef extern from "xxhash.h":
ctypedef uint64_t XXH64_hash_t
XXH64_hash_t XXH3_64bits(const void* data, size_t len) nogil

cdef uint64_t xxh3(const void* input, size_t length) nogil:
cdef uint64_t xxh3(const void* input, size_t length) nogil noexcept:
return XXH3_64bits(input, length)

0 comments on commit a3cd65e

Please sign in to comment.