From 23f56e2614a3364d900d8405726776145cd4b6be Mon Sep 17 00:00:00 2001 From: Jarryd Beck Date: Thu, 28 Nov 2019 08:32:54 +1100 Subject: [PATCH] Fix conversion warning in test --- test/options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/options.cpp b/test/options.cpp index d110e01..d3d3c7a 100644 --- a/test/options.cpp +++ b/test/options.cpp @@ -9,7 +9,7 @@ class Argv { Argv(std::initializer_list args) : m_argv(new char*[args.size()]) - , m_argc(args.size()) + , m_argc(static_cast(args.size())) { int i = 0; auto iter = args.begin();