[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:
Matt Morehouse 2017-12-04 20:06:52 +00:00
parent f51f580b08
commit e911a5d356
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}