From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3465AA09F6; Fri, 18 Dec 2020 00:16:07 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A55B8CA38; Fri, 18 Dec 2020 00:16:04 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 083C4CA2C for ; Fri, 18 Dec 2020 00:16:01 +0100 (CET) IronPort-SDR: gGxs4N7qCXxQOmUa3f6Qr8wySQsPJLVNC3wCUAWV1Z4A/FCdCRnza0znISIuPkWYtuReQcqfrI /areG6dl887Q== X-IronPort-AV: E=McAfee;i="6000,8403,9838"; a="193750582" X-IronPort-AV: E=Sophos;i="5.78,428,1599548400"; d="scan'208";a="193750582" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Dec 2020 15:16:00 -0800 IronPort-SDR: MVjnXOGZZRbj5DnGdsYDTGPJg2YDhReFw8QoYHi/eMTv8GWAFsKRWCeR+P7OY3K5qBNw1EfHGf reizY+y/xr3A== X-IronPort-AV: E=Sophos;i="5.78,428,1599548400"; d="scan'208";a="558290669" Received: from pkadam-mobl1.amr.corp.intel.com (HELO [10.212.207.37]) ([10.212.207.37]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Dec 2020 15:15:59 -0800 To: Narcisa Ana Maria Vasile Cc: dev@dpdk.org, thomas@monjalon.net, ranjit.menon@intel.com, dmitry.kozliuk@gmail.com, Narcisa.Vasile@microsoft.com, talshn@nvidia.com, ferruh.yigit@intel.com, beilei.xing@intel.com, jia.guo@intel.com References: <20201205011020.6276-1-pallavi.kadam@intel.com> <20201205011020.6276-4-pallavi.kadam@intel.com> <20201210005340.GA32754@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> From: "Kadam, Pallavi" Message-ID: <01c7896b-14cc-9398-efe1-342a17b52cba@intel.com> Date: Thu, 17 Dec 2020 15:15:54 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.5.1 MIME-Version: 1.0 In-Reply-To: <20201210005340.GA32754@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Subject: Re: [dpdk-dev] [PATCH 3/3] config/build: ignore enum forward reference warning X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 12/9/2020 4:53 PM, Narcisa Ana Maria Vasile wrote: > On Fri, Dec 04, 2020 at 05:10:20PM -0800, Pallavi Kadam wrote: >> Warning generated using Clang compiler: >> ..\drivers\net\i40e\base/i40e_osdep.h:34:14: warning: forward references >> to 'enum' types are a Microsoft extension >> [-Wmicrosoft-enum-forward-reference] >> typedef enum i40e_status_code i40e_status; >> ^ >> >> Adding -Wmicrosoft-enum-forward-reference compiler flag to disable >> the warning on Windows Clang. >> >> Signed-off-by: Pallavi Kadam >> Reviewed-by: Ranjit Menon >> --- > Why not including the "i40e_status.h" header that contains the definition of the enum > in this file? Thanks, Naty. Added this header file in v2.