wrapper: Format with clang-tidy (see #3632)

This commit is contained in:
Marshall Greenblatt
2024-01-20 12:34:13 -05:00
parent befa827da1
commit 4ea1b6f293
11 changed files with 43 additions and 49 deletions

View File

@@ -158,10 +158,9 @@ class CefXmlObjectLoader {
} // namespace
CefXmlObject::CefXmlObject(const CefString& name)
: name_(name), parent_(nullptr) {}
CefXmlObject::CefXmlObject(const CefString& name) : name_(name) {}
CefXmlObject::~CefXmlObject() {}
CefXmlObject::~CefXmlObject() = default;
bool CefXmlObject::Load(CefRefPtr<CefStreamReader> stream,
CefXmlReader::EncodingType encodingType,