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 2703ac0 commit f7078c6Copy full SHA for f7078c6
exporters/otlp/src/otlp_grpc_client.cc
@@ -28,6 +28,18 @@
28
#include "opentelemetry/exporters/otlp/protobuf_include_suffix.h" // IWYU pragma: keep
29
// clang-format on
30
31
+#ifdef ENABLE_ASYNC_EXPORT
32
+# include <condition_variable>
33
+# include <cstdio>
34
+# include <mutex>
35
+# include <thread>
36
+# include <unordered_set>
37
+
38
+# include "opentelemetry/common/timestamp.h"
39
+# include "opentelemetry/nostd/function_ref.h"
40
+# include "opentelemetry/nostd/string_view.h"
41
+#endif /* ENABLE_ASYNC_EXPORT */
42
43
namespace google
44
{
45
namespace protobuf
0 commit comments