Skip to content

Commit 3fa0a8e

Browse files
Abseil Teamaxgillies
authored andcommitted
Export of internal doc changes to Abseil OSS:
rpc://team/absl-team/Abseil-Docs Included changes: 746017342(Abseil Team): Remove references to C++14 support from documentation PiperOrigin-RevId: 746017342 Change-Id: I061f1daf1c3f84b253f5f35f65b3b500e3463e49
1 parent 101c684 commit 3fa0a8e

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

about/intro.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type: markdown
88
# Introduction to Abseil
99

1010
Welcome to Abseil! Abseil is an open-source collection of C++ code (compliant to
11-
C++14) designed to augment the C++ standard library. This document introduces
11+
C++17) designed to augment the C++ standard library. This document introduces
1212
Abseil and provides an overview of the code we're providing.
1313

1414
## Table of Contents
@@ -40,16 +40,14 @@ The Abseil codebase consists of the following C++ library components:
4040
<br /> The `memory` library contains memory management facilities that
4141
augment C++'s `<memory>` library.
4242
* [`meta`](https://github.com/abseil/abseil-cpp/tree/master/absl/meta)
43-
<br /> The `meta` library contains compatible versions of type checks
44-
available within C++14 and C++17 versions of the C++ `<type_traits>`
45-
library.
43+
<br /> The `meta` library contains type checks similar to those available in
44+
the C++ `<type_traits>` library.
4645
* [`numeric`](https://github.com/abseil/abseil-cpp/tree/master/absl/numeric)
4746
<br /> The `numeric` library contains 128-bit integer types as well as
4847
implementations of C++20's bitwise math functions.
4948
* [`strings`](https://github.com/abseil/abseil-cpp/tree/master/absl/strings)
5049
<br /> The `strings` library contains a variety of strings routines and
51-
utilities, including a C++14-compatible version of the C++17
52-
`std::string_view` type.
50+
utilities.
5351
* [`synchronization`](https://github.com/abseil/abseil-cpp/tree/master/absl/synchronization)
5452
<br /> The `synchronization` library contains concurrency primitives (Abseil's
5553
`absl::Mutex` class, an alternative to `std::mutex`) and a variety of
@@ -59,8 +57,7 @@ The Abseil codebase consists of the following C++ library components:
5957
points in time, durations of time, and formatting and parsing time within
6058
time zones.
6159
* [`types`](https://github.com/abseil/abseil-cpp/tree/master/absl/types)
62-
<br /> The `types` library contains non-container utility types, like a
63-
C++14-compatible version of `absl::optional`.
60+
<br /> The `types` library contains non-container utility types.
6461
* [`utility`](https://github.com/abseil/abseil-cpp/tree/master/absl/utility)
6562
<br /> The `utility` library contains utility and helper code.
6663

0 commit comments

Comments
 (0)