forked from OSchip/llvm-project
[libFuzzer] Remove const from ignoreRemainingArgs return value.
In this case const does nothing but trigger a warning. llvm-svn: 319685
This commit is contained in:
parent
f51f580b08
commit
e911a5d356
|
@ -28,8 +28,8 @@ public:
|
|||
// This command line flag is used to indicate that the remaining command line
|
||||
// is immutable, meaning this flag effectively marks the end of the mutable
|
||||
// argument list.
|
||||
static inline const char *const ignoreRemainingArgs() {
|
||||
static const char *const kIgnoreRemaining = "-ignore_remaining_args=1";
|
||||
static inline const char *ignoreRemainingArgs() {
|
||||
static const char *kIgnoreRemaining = "-ignore_remaining_args=1";
|
||||
return kIgnoreRemaining;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue