LSP: workaround msvc 2017 bug

Change-Id: I6a6fbfc1a582d83df3f3cf489236c7ca4c6626f7
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
David Schulz
2020-07-13 13:52:27 +02:00
parent c2f51b7797
commit ca0f504c0e
16 changed files with 41 additions and 51 deletions

View File

@@ -42,12 +42,12 @@ ShowMessageRequest::ShowMessageRequest(const ShowMessageRequestParams &params)
: Request(methodName, params)
{ }
LogMessageNotification::LogMessageNotification()
: Notification(methodName)
LogMessageNotification::LogMessageNotification(const LogMessageParams &params)
: Notification(methodName, params)
{ }
TelemetryNotification::TelemetryNotification()
: Notification(methodName)
TelemetryNotification::TelemetryNotification(const JsonObject &params)
: Notification(methodName, params)
{ }
bool ShowMessageRequestParams::isValid(ErrorHierarchy *error) const