diff options
| author | Jordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com> | 2020-08-13 09:30:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-13 09:30:31 -0700 |
| commit | ec471abe44ec5e7d75dbc60b63970e42e91ccee3 (patch) | |
| tree | 170a99d1c539ffa1fdf8773b851d672709afab43 | |
| parent | 0c80f51f7c5ae947411906ae5600d46d56e491bf (diff) | |
| parent | d09f1544fdc53c145fb0c0752b4426ffda86df9e (diff) | |
| download | platform_external_Microsoft-GSL-ec471abe44ec5e7d75dbc60b63970e42e91ccee3.tar.gz platform_external_Microsoft-GSL-ec471abe44ec5e7d75dbc60b63970e42e91ccee3.tar.bz2 platform_external_Microsoft-GSL-ec471abe44ec5e7d75dbc60b63970e42e91ccee3.zip | |
Merge pull request #912 from jwakely/patch-1
Fix comment typos
| -rw-r--r-- | include/gsl/gsl_byte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gsl/gsl_byte b/include/gsl/gsl_byte index c0d78ce..0d74b13 100644 --- a/include/gsl/gsl_byte +++ b/include/gsl/gsl_byte @@ -59,8 +59,8 @@ #ifndef GSL_USE_STD_BYTE #include <cstddef> /* __cpp_lib_byte */ -// this tests if we are under GCC or Clang with enough -std:c++1z power to get us std::byte -// also check if libc++ version is sufficient (> 5.0) or libstc++ actually contains std::byte +// this tests if we are under GCC or Clang with enough -std=c++1z power to get us std::byte +// also check if libc++ version is sufficient (> 5.0) or libstdc++ actually contains std::byte #if defined(__cplusplus) && (__cplusplus >= 201703L) && \ (defined(__cpp_lib_byte) && (__cpp_lib_byte >= 201603) || \ defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION >= 5000)) |
