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 785cd8c commit 36ffad7Copy full SHA for 36ffad7
llvm/include/llvm/Config/llvm-config.h.cmake
@@ -202,6 +202,6 @@
202
#cmakedefine LLVM_HAS_LOGF128
203
204
/* Define if building LLVM with LLVM_ENABLE_TELEMETRY */
205
-#cmakedefine01 LLVM_ENABLE_TELEMETRY ${LLVM_ENABLE_TELEMETRY}
+#cmakedefine01 LLVM_ENABLE_TELEMETRY
206
207
#endif
llvm/include/llvm/Telemetry/Telemetry.h
@@ -69,7 +69,7 @@ struct Config {
69
// If true, telemetry will be enabled.
70
const bool EnableTelemetry;
71
72
- virtual Config() : EnableTelemetry(BuildTimeEnableTelemetry) {}
+ explicit Config() : EnableTelemetry(BuildTimeEnableTelemetry) {}
73
74
// Telemetry can only be enabled if both the runtime and buildtime flag
75
// are set.
0 commit comments