diff options
author | Jack Lloyd <[email protected]> | 2019-05-08 18:36:09 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-05-08 18:39:09 -0400 |
commit | cbe17e860b70bab2d29323bab39e73fbfad6a956 (patch) | |
tree | 9c19b2341776a0144dfe804fe73df710048ea5ba /src/lib/utils/os_utils.h | |
parent | 300afa13058ff7b063f4b92dcf1ddc45cf0e881e (diff) |
Fix some warnings with Clang 8
Notably several from the new -Wdefaulted-function-deleted
Also remove some compat macro checks for MSVC 2013
Diffstat (limited to 'src/lib/utils/os_utils.h')
-rw-r--r-- | src/lib/utils/os_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/os_utils.h b/src/lib/utils/os_utils.h index 61116bd2a..5b8c49f99 100644 --- a/src/lib/utils/os_utils.h +++ b/src/lib/utils/os_utils.h @@ -112,11 +112,11 @@ const char* read_env_variable(const std::string& var_name); size_t read_env_variable_sz(const std::string& var_name, size_t def_value = 0); /** -* Request @param count pages of RAM which are locked into memory using mlock, +* Request count pages of RAM which are locked into memory using mlock, * VirtualLock, or some similar OS specific API. Free it with free_locked_pages. * * Returns an empty list on failure. This function is allowed to return fewer -* than @param count pages. +* than count pages. * * The contents of the allocated pages are undefined. * |