Skip to content

Commit

Permalink
Format pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomsonTan committed Jul 26, 2023
1 parent 4874248 commit 13cedea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sdk/include/opentelemetry/sdk/common/empty_attributes.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ namespace sdk
// [[maybe_used]] is not supported before C++17
#if defined(_MSVC_LANG) && _MSVC_LANG < 201703L

#pragma warning(push)
#pragma warning(disable: 4505) // warning C4505: 'function': unreferenced local function has been removed
# pragma warning(push)
# pragma warning( \
disable : 4505) // warning C4505: 'function': unreferenced local function has been removed

#endif

Expand All @@ -42,7 +43,7 @@ OPENTELEMETRY_MAYBE_UNUSED static const opentelemetry::common::KeyValueIterableV

#if defined(_MSVC_LANG) && _MSVC_LANG < 201703L

#pragma warning(pop)
# pragma warning(pop)

#endif

Expand Down

0 comments on commit 13cedea

Please sign in to comment.