diff options
Diffstat (limited to 'js/src/jit/ProcessExecutableMemory.h')
-rw-r--r-- | js/src/jit/ProcessExecutableMemory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/jit/ProcessExecutableMemory.h b/js/src/jit/ProcessExecutableMemory.h index 45c9c23b8c..efc47247fa 100644 --- a/js/src/jit/ProcessExecutableMemory.h +++ b/js/src/jit/ProcessExecutableMemory.h @@ -22,11 +22,11 @@ enum class ProtectionSetting { Executable, }; -extern MOZ_MUST_USE bool ReprotectRegion(void* start, size_t size, ProtectionSetting protection); +[[nodiscard]] extern bool ReprotectRegion(void* start, size_t size, ProtectionSetting protection); // Functions called at process start-up/shutdown to initialize/release the // executable memory region. -extern MOZ_MUST_USE bool InitProcessExecutableMemory(); +[[nodiscard]] extern bool InitProcessExecutableMemory(); extern void ReleaseProcessExecutableMemory(); // Allocate/deallocate executable pages. |