From 59a3c3f1e9e954b1fb30f1a72d6e91c4f273e398 Mon Sep 17 00:00:00 2001 From: Sachin Gupta Date: Tue, 24 Jan 2017 06:59:46 -0600 Subject: Removed c++11 dependency Change-Id: Ieab974da63942fab7c5f12568c5686beedf8568e Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35315 Tested-by: Jenkins Server Tested-by: PPE CI Reviewed-by: Claus M. Olsen Reviewed-by: Prachi Gupta Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35383 Reviewed-by: Hostboot Team Tested-by: FSP CI Jenkins Reviewed-by: Sachin Gupta --- src/import/tools/imageProcs/p9_ipl_build.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/import/tools') diff --git a/src/import/tools/imageProcs/p9_ipl_build.C b/src/import/tools/imageProcs/p9_ipl_build.C index 71babfad..a6b13d40 100644 --- a/src/import/tools/imageProcs/p9_ipl_build.C +++ b/src/import/tools/imageProcs/p9_ipl_build.C @@ -72,7 +72,7 @@ std::string getDDSpecificFileName( const char* i_fn, // create our dd specific file name std::stringstream ss; std::string fn = i_fn; - auto found = fn.find_last_of("/"); + size_t found = fn.find_last_of("/"); ss << CHIP_TYPE << std::hex << i_ddLevel << "." << fn.substr(found + 1); return ss.str(); -- cgit v1.2.1