summaryrefslogtreecommitdiffstats
path: root/import/hwpf
diff options
context:
space:
mode:
authorBrian Silver <bsilver@us.ibm.com>2016-02-23 14:53:36 -0600
committerSantosh S. Puranik <santosh.puranik@in.ibm.com>2016-03-04 07:20:52 -0500
commitd7ca621303be31b410f245d0beeabff1268d2680 (patch)
tree97f3e22637953f065945e6c2e4948e3f46451d42 /import/hwpf
parent40cd2e8e95ccb2e7208bc059508ffca71726815c (diff)
downloadtalos-sbe-d7ca621303be31b410f245d0beeabff1268d2680.tar.gz
talos-sbe-d7ca621303be31b410f245d0beeabff1268d2680.zip
Fix ffdc.H pointer, tooling changes
Change-Id: Ia39df60855e93772f3fbdd2a9a5392cf79038862 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/24672 Reviewed-by: Matt K. Light <mklight@us.ibm.com> Tested-by: Jenkins Server Reviewed-by: Brian Silver <bsilver@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/21043 Reviewed-by: Santosh S. Puranik <santosh.puranik@in.ibm.com>
Diffstat (limited to 'import/hwpf')
-rw-r--r--import/hwpf/fapi2/include/ffdc.H9
1 files changed, 4 insertions, 5 deletions
diff --git a/import/hwpf/fapi2/include/ffdc.H b/import/hwpf/fapi2/include/ffdc.H
index a664ca5e..167e6f87 100644
--- a/import/hwpf/fapi2/include/ffdc.H
+++ b/import/hwpf/fapi2/include/ffdc.H
@@ -69,8 +69,7 @@ class FirstFailureData
// problem.
///
FirstFailureData(void):
- iv_info( nullptr )
-// iv_info( nullptr ), iv_platDataPtr(nullptr)
+ iv_info( nullptr ), iv_platDataPtr(nullptr)
{}
///
@@ -178,7 +177,7 @@ class FirstFailureData
{
iv_info = nullptr;
}
-#if 0
+
///
/// @brief Returns the platform data pointer value to the caller.
///
@@ -195,14 +194,14 @@ class FirstFailureData
{
iv_platDataPtr = i_ptr;
};
-#endif
+
private:
// Pointer to the error info
std::shared_ptr<ErrorInfo> iv_info;
// free format data, to be used by the platform
-// void* iv_platDataPtr;
+ void* iv_platDataPtr;
};
}
OpenPOWER on IntegriCloud