aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Wakely <cxx@kayari.org>2020-08-13 10:46:39 +0100
committerGitHub <noreply@github.com>2020-08-13 10:46:39 +0100
commitd09f1544fdc53c145fb0c0752b4426ffda86df9e (patch)
tree170a99d1c539ffa1fdf8773b851d672709afab43
parent0c80f51f7c5ae947411906ae5600d46d56e491bf (diff)
downloadplatform_external_Microsoft-GSL-d09f1544fdc53c145fb0c0752b4426ffda86df9e.tar.gz
platform_external_Microsoft-GSL-d09f1544fdc53c145fb0c0752b4426ffda86df9e.tar.bz2
platform_external_Microsoft-GSL-d09f1544fdc53c145fb0c0752b4426ffda86df9e.zip
Fix comment typos
-rw-r--r--include/gsl/gsl_byte4
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))