clang-tidy: modernize-use-default-member-init

This commit is contained in:
Peter Johnson
2020-12-28 00:28:23 -08:00
parent d11a3a6380
commit b124f9101b
13 changed files with 49 additions and 52 deletions

View File

@@ -42,7 +42,7 @@ class Frame {
};
public:
Frame() noexcept : m_impl{nullptr} {}
Frame() noexcept {}
Frame(SourceImpl& source, const wpi::Twine& error, Time time);
@@ -231,7 +231,7 @@ class Frame {
}
void ReleaseFrame();
Impl* m_impl;
Impl* m_impl{nullptr};
};
} // namespace cs