-
Key: CPP1115-2
-
Status: closed
-
Source: Remedy IT ( Johnny Willemsen)
-
Summary:
The operation _default_POA currently declared as
IDL::traits<PortableServer::POA>::ref_type _default_POA()
Should be
IDL::traits<PortableServer::POA>::ref_type _default_POA() override
Also the formatting of the constructor of the TIE template should be changed, hard to read. Initializing the members could use std::move so change
: tied_object_(t), poa_(poa)
to
: tied_object_(std::move(t)), poa_(std::move(poa))
-
Reported: CPP11 1.4 — Fri, 18 Sep 2020 07:43 GMT
-
Disposition: Resolved — CPP11 1.5
-
Disposition Summary:
Updated code for Delegation-Based Interface Implementation
Update code to reflect C++ best practices
-
Updated: Mon, 29 Mar 2021 12:21 GMT