summaryrefslogtreecommitdiff
path: root/Userland/sort.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-22 16:13:47 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-22 16:13:47 +0200
commit3b01d7fdff7562b239b4abd34e9cc5f2562e54dd (patch)
tree037b625568306ade899b1a949bb491dae277c861 /Userland/sort.cpp
parent4118aaaa32c1b6547b8846633d3586f18c9ee0f9 (diff)
downloadserenity-3b01d7fdff7562b239b4abd34e9cc5f2562e54dd.zip
Userland: Fix more compiler warnings.
Diffstat (limited to 'Userland/sort.cpp')
-rw-r--r--Userland/sort.cpp3
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 (;;) {