-
Key: DDSPSMC-16
-
Legacy Issue Number: 16562
-
Status: closed
-
Source: Real-Time Innovations ( Sumant Tambe)
-
Summary:
- hpp\dds\core\Value.hpp around line 67 added & to the return value:
const D* operator->() const
{ return &d_; }2- same file, line 58, 62 added "const" to != and == operators
{ return (d_ == other.d_); }
bool operator==(const Value& other) constbool operator !=(const Value& other) const
{ return !(d_ == other.d_); }3- hpp\tdds\core\qos\EntityQos.hpp line 88 added "const" to declaration
const EntityQos& operator >> (POLICY& p) const {
4- dds\core\policy\CorePolicy.hpp, line 38. name() method is not public.
{ \ public: \ static const std::string& name(); \ }
class policy_name<POLICY>;
5- hpp\dds\core\Exception.hpp, line 202 wrong parameter type in the ctor
InvalidDataError(const InvalidDataError& src);Proposed solution:
Add the missing things.
-
Reported: DDS-PSM-Cxx 1.0b1 — Wed, 21 Sep 2011 04:00 GMT
-
Disposition: Resolved — DDS-PSM-Cxx 1.0b2
-
Disposition Summary:
Add missing designators. Notice that as the final API does not include any implementation only designators have been addressed
-
Updated: Fri, 6 Mar 2015 20:58 GMT