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 10e1b93 commit cf1ded3Copy full SHA for cf1ded3
lldb/source/Plugins/Process/Windows/Common/TargetThreadWindows.cpp
@@ -175,6 +175,11 @@ Status TargetThreadWindows::DoResume() {
175
return Status();
176
}
177
178
+#if defined(__clang__)
179
+#pragma clang diagnostic push
180
+#pragma clang diagnostic ignored "-Wcast-function-type-mismatch"
181
+#endif
182
+
183
const char *TargetThreadWindows::GetName() {
184
Log *log = GetLog(LLDBLog::Thread);
185
static GetThreadDescriptionFunctionPtr GetThreadDescription = []() {
@@ -200,3 +205,7 @@ const char *TargetThreadWindows::GetName() {
200
205
201
206
return m_name.c_str();
202
207
208
209
210
+#pragma clang diagnostic pop
211
0 commit comments