From 6d91b04c143e28c40f7141678a4802cd697faaa4 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 18 Mar 2009 02:57:50 +0000 Subject: [PATCH] Driver: Initialize Arg::Claimed git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67160 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/Arg.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Driver/Arg.cpp b/lib/Driver/Arg.cpp index 6cff93e64a..6a860b6200 100644 --- a/lib/Driver/Arg.cpp +++ b/lib/Driver/Arg.cpp @@ -17,7 +17,8 @@ using namespace clang::driver; Arg::Arg(ArgClass _Kind, const Option *_Opt, unsigned _Index) : Kind(_Kind), Opt(_Opt), - Index(_Index) + Index(_Index), + Claimed(false) { } -- 2.50.1