On 9 December 2014 at 03:15, Simon Kågström <[email protected]> wrote:
> When building with --std=c++0x or --std=c++11, you will otherwise get > this warning: > > C++11 requires a space between literal and identifier [-Wliteral-suffix] > ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "."\ > > Signed-off-by: Simon Kagstrom <[email protected]> > Reviewed-by Mike Holmes <[email protected]> > --- > platform/linux-generic/include/api/odp_version.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/platform/linux-generic/include/api/odp_version.h > b/platform/linux-generic/include/api/odp_version.h > index 41708ca..b3b345a 100644 > --- a/platform/linux-generic/include/api/odp_version.h > +++ b/platform/linux-generic/include/api/odp_version.h > @@ -56,8 +56,8 @@ extern "C" { > > /** @internal API version string */ > #define ODP_VERSION_API_STR \ > -ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "."\ > -ODP_VERSION_TO_STR(ODP_VERSION_API_MAJOR) "."\ > +ODP_VERSION_TO_STR(ODP_VERSION_API_GENERATION) "." \ > +ODP_VERSION_TO_STR(ODP_VERSION_API_MAJOR) "." \ > ODP_VERSION_TO_STR(ODP_VERSION_API_MINOR) > > /** > -- > 1.9.1 > > _______________________________________________ > lng-odp mailing list > [email protected] > http://lists.linaro.org/mailman/listinfo/lng-odp > -- *Mike Holmes* Linaro Sr Technical Manager LNG - ODP
_______________________________________________ lng-odp mailing list [email protected] http://lists.linaro.org/mailman/listinfo/lng-odp
