We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29dc84a commit 9a7fd5cCopy full SHA for 9a7fd5c
stdlib/public/runtime/SymbolInfo.cpp
@@ -53,7 +53,7 @@ const void *SymbolInfo::getAddress() const {
53
return _address;
54
}
55
56
-const char *getImagePath() const {
+const char *SymbolInfo::getImagePath() const {
57
#if defined(_WIN32) && !defined(__CYGWIN__)
58
if (!_imagePath.has_value()) {
59
// On Win32/Win64, the base address of a loaded image and its HMODULE are
stdlib/public/runtime/SymbolInfo.h
@@ -42,7 +42,7 @@ struct SymbolInfo {
42
#endif
43
const void *_address;
44
45
- SymbolInfo() {}
+ SymbolInfo();
46
47
public:
48
~SymbolInfo();
0 commit comments