From 3ab3ccf079c0efb460144e3b9932cb1b7f5bcc53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Thu, 4 Aug 2016 16:13:57 +0200 Subject: [PATCH] test: Avoid warning unused argument in main --- test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.cpp b/test.cpp index c201a53..1a63eda 100644 --- a/test.cpp +++ b/test.cpp @@ -546,6 +546,8 @@ void testURISizes() } int main(int argc, char **argv) { + (void)argc; + (void)argv; // use CUnit test framework CU_pSuite pSuite = NULL;