diff options
author | vanhauser-thc <vh@thc.org> | 2023-03-06 09:59:52 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-03-06 09:59:52 +0100 |
commit | e6a05382b83817b245da51bcba16be5df56eb283 (patch) | |
tree | 886406cd73304a738d7364c71b2a56b31858bfaa /instrumentation/afl-llvm-common.h | |
parent | cb8296bdb0a2f3f1115ecbe2ac9f1c5a86c94893 (diff) | |
download | afl++-e6a05382b83817b245da51bcba16be5df56eb283.tar.gz |
fix IGNORE_PROBLEMS and update qemuafl
Diffstat (limited to 'instrumentation/afl-llvm-common.h')
-rw-r--r-- | instrumentation/afl-llvm-common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/instrumentation/afl-llvm-common.h b/instrumentation/afl-llvm-common.h index 0112c325..16a13da5 100644 --- a/instrumentation/afl-llvm-common.h +++ b/instrumentation/afl-llvm-common.h @@ -37,10 +37,10 @@ typedef long double max_align_t; #define MNAME M.getSourceFileName() #define FMNAME F.getParent()->getSourceFileName() #if LLVM_VERSION_MAJOR >= 16 - // None becomes deprecated - // the standard std::nullopt_t is recommended instead - // from C++17 and onwards. - constexpr std::nullopt_t None = std::nullopt; +// None becomes deprecated +// the standard std::nullopt_t is recommended instead +// from C++17 and onwards. +constexpr std::nullopt_t None = std::nullopt; #endif #else #define MNAME std::string("") |