[dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h

2015-02-20 Thread Stefan Puiu
;> To: Mcnamara, John >> Cc: Stefan Puiu; dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h >> >> > > >> > > In C++11 concatenated string literals need to have a space in between. >> > > clang 3.

[dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h

2015-02-13 Thread Mcnamara, John
> -Original Message- > From: Richardson, Bruce > Sent: Friday, February 13, 2015 10:18 AM > To: Mcnamara, John > Cc: Stefan Puiu; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h > > > > > > > In C++11 conc

[dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h

2015-02-13 Thread Bruce Richardson
On Fri, Feb 13, 2015 at 08:25:38AM +, Mcnamara, John wrote: > > -Original Message- > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Stefan Puiu > > Sent: Wednesday, February 11, 2015 8:51 AM > > To: dev at dpdk.org > > Subject: [dpdk-dev] [PATC

[dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h

2015-02-13 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Stefan Puiu > Sent: Wednesday, February 11, 2015 8:51 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h > > In C++11 concatenated string li

[dpdk-dev] [PATCH] Minor C++11 compilation fix for rte_pci.h

2015-02-11 Thread Stefan Puiu
In C++11 concatenated string literals need to have a space in between. clang 3.4 reports this as an error (and IIRC also gcc-4.8): dpdk/include/rte_pci.h:96:26: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] Signed-off-by: