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 99fb5c0 commit c6a8633Copy full SHA for c6a8633
api/test/trace/propagation/detail/string_test.cc
@@ -7,6 +7,10 @@
7
8
#include "opentelemetry/nostd/string_view.h"
9
10
+// There is an issue with using googletest and valgrind where if a struct used as a parameter has
11
+// any padding, it causes valgrind to report it as "use of uninitialized value".
12
+// pragma pack instructs compilers not to insert additional padding
13
+#pragma pack(1)
14
struct SplitStringTestData
15
{
16
opentelemetry::nostd::string_view input;
0 commit comments