format previously misses .cc files
This commit is contained in:
parent
284aca68c0
commit
49c8c31220
36 changed files with 1279 additions and 1411 deletions
|
@ -6,18 +6,15 @@
|
|||
|
||||
#include <winstring.h>
|
||||
|
||||
ScopedHString::ScopedHString(const wchar_t* source)
|
||||
: str_(nullptr) {
|
||||
ScopedHString::ScopedHString(const wchar_t* source) : str_(nullptr) {
|
||||
Reset(source);
|
||||
}
|
||||
|
||||
ScopedHString::ScopedHString(const std::wstring& source)
|
||||
: str_(nullptr) {
|
||||
ScopedHString::ScopedHString(const std::wstring& source) : str_(nullptr) {
|
||||
Reset(source);
|
||||
}
|
||||
|
||||
ScopedHString::ScopedHString() : str_(nullptr) {
|
||||
}
|
||||
ScopedHString::ScopedHString() : str_(nullptr) {}
|
||||
|
||||
ScopedHString::~ScopedHString() {
|
||||
Reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue