diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-22 16:13:47 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-22 16:13:47 +0200 |
commit | 3b01d7fdff7562b239b4abd34e9cc5f2562e54dd (patch) | |
tree | 037b625568306ade899b1a949bb491dae277c861 /Userland/sort.cpp | |
parent | 4118aaaa32c1b6547b8846633d3586f18c9ee0f9 (diff) | |
download | serenity-3b01d7fdff7562b239b4abd34e9cc5f2562e54dd.zip |
Userland: Fix more compiler warnings.
Diffstat (limited to 'Userland/sort.cpp')
-rw-r--r-- | Userland/sort.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/sort.cpp b/Userland/sort.cpp index 543a1185c3..e2bc08ad74 100644 --- a/Userland/sort.cpp +++ b/Userland/sort.cpp @@ -6,6 +6,9 @@ int main(int argc, char** argv) { + UNUSED_PARAM(argc); + UNUSED_PARAM(argv); + Vector<String> lines; for (;;) { |