[chromium-style] out-of-line default constructors and destructors
This commit is contained in:
parent
6c26bb1cf8
commit
f1587da480
48 changed files with 136 additions and 12 deletions
|
@ -11,8 +11,10 @@ TtsUtteranceRequest::~TtsUtteranceRequest() {}
|
|||
|
||||
TtsVoice::TtsVoice() : local_service(true), is_default(false) {}
|
||||
|
||||
TtsVoice::TtsVoice(const TtsVoice&) = default;
|
||||
|
||||
TtsVoice::~TtsVoice() {}
|
||||
|
||||
TtsUtteranceResponse::TtsUtteranceResponse() : id(0) {}
|
||||
|
||||
TtsUtteranceResponse::~TtsUtteranceResponse() {}
|
||||
TtsUtteranceResponse::~TtsUtteranceResponse() {}
|
||||
|
|
|
@ -25,6 +25,7 @@ struct TtsUtteranceRequest {
|
|||
|
||||
struct TtsVoice {
|
||||
TtsVoice();
|
||||
TtsVoice(const TtsVoice&);
|
||||
~TtsVoice();
|
||||
|
||||
std::string voice_uri;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue