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

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmlu <smlu@s5.net>2021-09-07 05:26:00 +0300
committerJonathan White <support@dmapps.us>2021-09-20 00:16:45 +0300
commit0c6587b5b7325556aa41eadc2322908e95f14003 (patch)
tree51f15098c3d4b138cff989d469cd28d6fc4fae5a /src/zxcvbn/zxcvbn.c
parent24a23ce66eb07d7ee46dade36b23b295c13b6c1f (diff)
Add support for Microsoft Visual Studio buildchain
* Use C++17 when using MSVC compiler * Remove unneeded header files and macros * Removed unnecessary Yubikey cmake file * Enhance release tool * Updated INSTALL.md
Diffstat (limited to 'src/zxcvbn/zxcvbn.c')
-rw-r--r--src/zxcvbn/zxcvbn.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/zxcvbn/zxcvbn.c b/src/zxcvbn/zxcvbn.c
index 1d6a307c3..23792b4d6 100644
--- a/src/zxcvbn/zxcvbn.c
+++ b/src/zxcvbn/zxcvbn.c
@@ -44,12 +44,6 @@
#endif
#endif
-/* For pre-compiled headers under windows */
-#ifndef __MINGW32__
-#ifdef _WIN32
-#include "stdafx.h"
-#endif
-#endif
/* Minimum number of characters in a incrementing/decrementing sequence match */
#define MIN_SEQUENCE_LEN 3