summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorNate <37554478+servusdei2018@users.noreply.github.com>2021-08-07 10:32:31 (GMT)
committerGitHub <noreply@github.com>2021-08-07 10:32:31 (GMT)
commit0c782923359062d1c909b8cce52526ec95f28f6c (patch)
tree9ed4c5b042d196fb1b466ad827c6d7cd3edb63b4 /programs
parentde45d6e0fa59e1c5dc21f611dd73f91ba04aaff1 (diff)
downloadlz4-0c782923359062d1c909b8cce52526ec95f28f6c.zip
lz4-0c782923359062d1c909b8cce52526ec95f28f6c.tar.gz
lz4-0c782923359062d1c909b8cce52526ec95f28f6c.tar.bz2
nit(programs/platform.h): replace Unicode character #1018
On line 83, U+2013 was replaced with U+002D in order to improve compatibility with MSVC 2019 and older compilers.
Diffstat (limited to 'programs')
-rw-r--r--programs/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/platform.h b/programs/platform.h
index abcd67b..43a171b 100644
--- a/programs/platform.h
+++ b/programs/platform.h
@@ -80,7 +80,7 @@ extern "C" {
************************************************************** */
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)) /* UNIX-like OS */ \
|| defined(__midipix__) || defined(__VMS))
-# if (defined(__APPLE__) && defined(__MACH__)) || defined(__SVR4) || defined(_AIX) || defined(__hpux) /* POSIX.1–2001 (SUSv3) conformant */ \
+# if (defined(__APPLE__) && defined(__MACH__)) || defined(__SVR4) || defined(_AIX) || defined(__hpux) /* POSIX.1-2001 (SUSv3) conformant */ \
|| defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__MidnightBSD__) /* BSD distros */ \
|| defined(__HAIKU__)
# define PLATFORM_POSIX_VERSION 200112L