Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Fixes CI markdown error MD055 - Table pipe style #2517

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/building-with-stdlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,15 @@ Valid values for `OPENTELEMETRY_STL_VERSION` are `2011`, `2014`, `2017`, `2020`

List of compilers that support building with standard library classes:

Compiler | Language standard | Notes
-------------------|-------------------|-------------------
Visual Studio 2015 | C++14 | requires `gsl::span` for `std::span` implementation
Visual Studio 2017 | C++17 | requires `gsl::span` for `std::span` implementation
Visual Studio 2019 | C++20 |
Xcode 11.x | C++17 | requires `gsl::span` for `std::span` implementation
Xcode 12.x | C++20 |
gcc-7 | C++17 | requires `gsl::span` for `std::span` implementation
gcc-9+ | C++20 |
| Compiler | Language standard | Notes |
| ------------------ | ----------------- | --------------------------------------------------- |
| Visual Studio 2015 | C++14 | requires `gsl::span` for `std::span` implementation |
| Visual Studio 2017 | C++17 | requires `gsl::span` for `std::span` implementation |
| Visual Studio 2019 | C++20 | |
| Xcode 11.x | C++17 | requires `gsl::span` for `std::span` implementation |
| Xcode 12.x | C++20 | |
| gcc-7 | C++17 | requires `gsl::span` for `std::span` implementation |
| gcc-9+ | C++20 | |

If SDK is compiled without standard library classes, then `nostd::variant`
implementation internally uses a private snapshot of [Abseil
Expand Down