summaryrefslogtreecommitdiff
path: root/Meta/Lagom/Fuzzers/FuzzShell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Meta/Lagom/Fuzzers/FuzzShell.cpp')
-rw-r--r--Meta/Lagom/Fuzzers/FuzzShell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Fuzzers/FuzzShell.cpp b/Meta/Lagom/Fuzzers/FuzzShell.cpp
index abb02c2f68..d762a63cf1 100644
--- a/Meta/Lagom/Fuzzers/FuzzShell.cpp
+++ b/Meta/Lagom/Fuzzers/FuzzShell.cpp
@@ -31,7 +31,7 @@
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
- auto source = AK::StringView(static_cast<const unsigned char*>(data), size);
+ auto source = StringView(static_cast<const unsigned char*>(data), size);
Shell::Parser parser(source);
parser.parse();
return 0;