From 1b798a7042070cc8063bd341ebf7025da554b632 Mon Sep 17 00:00:00 2001 From: Jeffrey Date: Sat, 5 Mar 2022 21:43:29 -0600 Subject: [PATCH] Remove the only 4 non-UTF8 characters in codebase AFAIK these 4 hyphens in these comments in local_ip.h are the only non-UFT8 characters in the entire monero repo. It tripped up a dependency script I was writing for this codebase, so now its personal. --- contrib/epee/include/net/local_ip.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/epee/include/net/local_ip.h b/contrib/epee/include/net/local_ip.h index 1eeab2dc5..7916e4ee8 100644 --- a/contrib/epee/include/net/local_ip.h +++ b/contrib/epee/include/net/local_ip.h @@ -44,9 +44,9 @@ namespace epee ip = SWAP32LE(ip); /* local ip area - 10.0.0.0 — 10.255.255.255 - 172.16.0.0 — 172.31.255.255 - 192.168.0.0 — 192.168.255.255 + 10.0.0.0 ... 10.255.255.255 + 172.16.0.0 ... 172.31.255.255 + 192.168.0.0 ... 192.168.255.255 */ if( (ip | 0xffffff00) == 0xffffff0a) return true; @@ -71,7 +71,7 @@ namespace epee //MAKE_IP /* loopback ip - 127.0.0.0 — 127.255.255.255 + 127.0.0.0 ... 127.255.255.255 */ return false; }