Enable default construction of PendingAsyncCall (#180)

This is helpful in use cases where a user defined class wants to
store a PendingAsyncCall as a member variable, or in a STL
container.
This commit is contained in:
David Leeds
2021-05-07 06:22:07 -07:00
committed by GitHub
parent 6df67469ad
commit d65744b1fc
2 changed files with 18 additions and 0 deletions

View File

@ -293,6 +293,8 @@ namespace sdbus {
class PendingAsyncCall
{
public:
PendingAsyncCall() = default;
/*!
* @brief Cancels the delivery of the pending asynchronous call result
*