From eb5699c835c2c0f2ebb1561b1ae3f37a457b941f Mon Sep 17 00:00:00 2001 From: Taeyeon Mori Date: Sat, 12 Apr 2014 20:18:58 +0200 Subject: [Clang Warnings] Fix char* cast from string literal in Tests --- tests/TestUtil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/TestUtil.h b/tests/TestUtil.h index e9099b15..e7017743 100644 --- a/tests/TestUtil.h +++ b/tests/TestUtil.h @@ -39,9 +39,9 @@ struct TestsInternal #define QTEST_GUILESS_MAIN_MULTIMC(TestObject) \ int main(int argc, char *argv[]) \ { \ - char *argv_[] = { argv[0] _MMC_EXTRA_ARGV }; \ + const char *argv_[] = { argv[0] _MMC_EXTRA_ARGV }; \ int argc_ = 1 + _MMC_EXTRA_ARGC; \ - MultiMC app(argc_, argv_, true); \ + MultiMC app(argc_, const_cast(argv_), true); \ app.setAttribute(Qt::AA_Use96Dpi, true); \ TestObject tc; \ return QTest::qExec(&tc, argc, argv); \ -- cgit v1.2.3