Skip to content

Commit 9a7fd5c

Browse files
committed
Fix typos
1 parent 29dc84a commit 9a7fd5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/public/runtime/SymbolInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const void *SymbolInfo::getAddress() const {
5353
return _address;
5454
}
5555

56-
const char *getImagePath() const {
56+
const char *SymbolInfo::getImagePath() const {
5757
#if defined(_WIN32) && !defined(__CYGWIN__)
5858
if (!_imagePath.has_value()) {
5959
// On Win32/Win64, the base address of a loaded image and its HMODULE are

stdlib/public/runtime/SymbolInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ struct SymbolInfo {
4242
#endif
4343
const void *_address;
4444

45-
SymbolInfo() {}
45+
SymbolInfo();
4646

4747
public:
4848
~SymbolInfo();

0 commit comments

Comments
 (0)