From 081698e38ba10ca0e5af527e0c2d3cc17fe213c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Hadnagy?= Date: Sat, 23 Jul 2022 01:24:44 +0200 Subject: [PATCH] Lint --- .../include/opentelemetry/exporters/ostream/common_utils.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exporters/ostream/include/opentelemetry/exporters/ostream/common_utils.h b/exporters/ostream/include/opentelemetry/exporters/ostream/common_utils.h index 05526d01ab..6712e6a9da 100644 --- a/exporters/ostream/include/opentelemetry/exporters/ostream/common_utils.h +++ b/exporters/ostream/include/opentelemetry/exporters/ostream/common_utils.h @@ -61,7 +61,8 @@ class OwnedAttributeValueVisitor #endif -inline void print_value(const opentelemetry::sdk::common::OwnedAttributeValue &value, std::ostream &sout) +inline void print_value(const opentelemetry::sdk::common::OwnedAttributeValue &value, + std::ostream &sout) { #if __cplusplus < 201402L opentelemetry::nostd::visit(OwnedAttributeValueVisitor(sout), value);