From 5c110799a600e5f1b7e986eb1b1f46e6ce00fd15 Mon Sep 17 00:00:00 2001 From: Elena Subbotina Date: Tue, 28 Oct 2025 15:51:41 +0300 Subject: [PATCH] . --- Common/3dParty/socketio/patches/sio_client_impl_encode.patch | 5 ----- PdfFile/SrcWriter/Utils.h | 1 - 2 files changed, 6 deletions(-) delete mode 100644 Common/3dParty/socketio/patches/sio_client_impl_encode.patch diff --git a/Common/3dParty/socketio/patches/sio_client_impl_encode.patch b/Common/3dParty/socketio/patches/sio_client_impl_encode.patch deleted file mode 100644 index d7021d6b59..0000000000 --- a/Common/3dParty/socketio/patches/sio_client_impl_encode.patch +++ /dev/null @@ -1,5 +0,0 @@ -<<<<<<< - if((c >= 'a' && c <= 'z') || (c>= 'A' && c<= 'Z') || (c >= '0' && c<= '9')){ -======= - if((c >= 'a' && c <= 'z') || (c>= 'A' && c<= 'Z') || (c >= '0' && c<= '9') || ('-' == c) || ('_' == c) || ('.' == c) || ('~' == c)){ ->>>>>>> diff --git a/PdfFile/SrcWriter/Utils.h b/PdfFile/SrcWriter/Utils.h index 8375787182..d737624c3d 100644 --- a/PdfFile/SrcWriter/Utils.h +++ b/PdfFile/SrcWriter/Utils.h @@ -33,7 +33,6 @@ #define _PDF_WRITER_SRC_UTILS_H #include "Types.h" -#include #define NEEDS_ESCAPE(c) (c < 0x21 || \ c > 0x7e || \