aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/SubsystemObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/SubsystemObject.cpp')
-rwxr-xr-xparameter/SubsystemObject.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/parameter/SubsystemObject.cpp b/parameter/SubsystemObject.cpp
index fb635c8..76b9549 100755
--- a/parameter/SubsystemObject.cpp
+++ b/parameter/SubsystemObject.cpp
@@ -40,6 +40,8 @@
#include <sstream>
#include <stdarg.h>
+using std::string;
+
CSubsystemObject::CSubsystemObject(CInstanceConfigurableElement* pInstanceConfigurableElement)
: _pInstanceConfigurableElement(pInstanceConfigurableElement),
_uiDataSize(pInstanceConfigurableElement->getFootPrint()),
@@ -81,7 +83,7 @@ uint32_t CSubsystemObject::asInteger(const string& strValue)
string CSubsystemObject::asString(uint32_t uiValue)
{
- ostringstream ostr;
+ std::ostringstream ostr;
ostr << uiValue;