about summary refs log tree commit diff
path: root/instrumentation/afl-llvm-common.cc
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2021-05-06 14:59:29 +0100
committerGitHub <noreply@github.com>2021-05-06 15:59:29 +0200
commitc3b19f5bf84effa67dd8a2ce440124cbe60221df (patch)
tree4513f61479972c56de7eff6de82c1466ffeb91a1 /instrumentation/afl-llvm-common.cc
parent6dc82e620b744b61ce4ad6d783f59b9c9db2827a (diff)
downloadafl++-c3b19f5bf84effa67dd8a2ce440124cbe60221df.tar.gz
instrumentation further move to C++11 (#900)
Diffstat (limited to 'instrumentation/afl-llvm-common.cc')
-rw-r--r--instrumentation/afl-llvm-common.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/instrumentation/afl-llvm-common.cc b/instrumentation/afl-llvm-common.cc
index 24498f3e..af32e2f9 100644
--- a/instrumentation/afl-llvm-common.cc
+++ b/instrumentation/afl-llvm-common.cc
@@ -55,7 +55,7 @@ bool isIgnoreFunction(const llvm::Function *F) {
   // Starting from "LLVMFuzzer" these are functions used in libfuzzer based
   // fuzzing campaign installations, e.g. oss-fuzz
 
-  static const char *ignoreList[] = {
+  static constexpr const char *ignoreList[] = {
 
       "asan.",
       "llvm.",
@@ -94,7 +94,7 @@ bool isIgnoreFunction(const llvm::Function *F) {
 
   }
 
-  static const char *ignoreSubstringList[] = {
+  static constexpr const char *ignoreSubstringList[] = {
 
       "__asan",       "__msan",     "__ubsan", "__lsan",
       "__san",        "__sanitize", "__cxx",   "_GLOBAL__",