diff options
author | Kevin Rocard <kevin.rocard@intel.com> | 2015-02-06 11:24:29 +0100 |
---|---|---|
committer | Kevin Rocard <kevin.rocard@intel.com> | 2015-02-06 11:31:28 +0100 |
commit | 67c8584aa02c92135f84785fa446f2d0acab3224 (patch) | |
tree | 0608276e0c8e4d273bc42068419cf4fac4ef3273 /skeleton-subsystem/SkeletonSubsystem.h | |
parent | f39078a6c340431a749ded1f69deb6c646de531c (diff) | |
download | external_parameter-framework-67c8584aa02c92135f84785fa446f2d0acab3224.zip external_parameter-framework-67c8584aa02c92135f84785fa446f2d0acab3224.tar.gz external_parameter-framework-67c8584aa02c92135f84785fa446f2d0acab3224.tar.bz2 |
Missing std prefix in skeleton plugin
The skeleton plugin is not compiled when compiling
the root pfw project. As a result, when `using namespaces`
was removed from the pfw headers the skeleton plugin
was left unchecked and unfortunately broken.
Fix the missing `std::` by adding them where needed or
inserting a `using std::string`.
Signed-off-by: Kevin Rocard <kevin.rocard@intel.com>
Diffstat (limited to 'skeleton-subsystem/SkeletonSubsystem.h')
-rw-r--r-- | skeleton-subsystem/SkeletonSubsystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skeleton-subsystem/SkeletonSubsystem.h b/skeleton-subsystem/SkeletonSubsystem.h index 6f1af19..26cd659 100644 --- a/skeleton-subsystem/SkeletonSubsystem.h +++ b/skeleton-subsystem/SkeletonSubsystem.h @@ -34,7 +34,7 @@ class CSkeletonSubsystem : public CSubsystem { public: - CSkeletonSubsystem(const string& strName); + CSkeletonSubsystem(const std::string& strName); }; |