Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Common/Wildcard.cpp')
-rwxr-xr-xCPP/Common/Wildcard.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/CPP/Common/Wildcard.cpp b/CPP/Common/Wildcard.cpp
index ddadc7b1..2e938375 100755
--- a/CPP/Common/Wildcard.cpp
+++ b/CPP/Common/Wildcard.cpp
@@ -4,7 +4,6 @@
#include "Wildcard.h"
-static const wchar_t kPeriodChar = L'.';
static const wchar_t kAnyCharsChar = L'*';
static const wchar_t kAnyCharChar = L'?';
@@ -20,8 +19,6 @@ static const UString kIllegalWildCardFileNameChars=
L"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"
L"\"/:<>\\|";
-static const UString kIllegalFileNameChars = kIllegalWildCardFileNameChars +
- kWildCardCharSet;
static inline bool IsCharDirLimiter(wchar_t c)
{
@@ -147,11 +144,6 @@ bool DoesNameContainWildCard(const UString &path)
namespace NWildcard {
-static inline int BoolToIndex(bool value)
-{
- return value ? 1: 0;
-}
-
/*
M = MaskParts.Size();