diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-09-28 19:44:33 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-09-28 19:44:33 -0700 |
commit | f00cf656dc7d58d18c26191ed0ae325dccb91031 (patch) | |
tree | 7b2dd818f0212d85d51545a6fca0324ebeedd144 /optimize.c | |
parent | d16d92e520b7105c2d511bbe3e1ae4ce6cceda4f (diff) |
Don't bother supporting pre-2005 Visual Studio.
2003 (or earlier!) called; it wants its Microsoft C compiler back.
Diffstat (limited to 'optimize.c')
-rw-r--r-- | optimize.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -65,9 +65,10 @@ int pcap_optimizer_debug; * GCC 3.4 and later; we have __builtin_ctz(). */ #define lowest_set_bit(mask) __builtin_ctz(mask) -#elif defined(_MSC_VER) && (_MSC_VER >= 1400) +#elif defined(_MSC_VER) /* - * Visual Studio 2005 and later; use _BitScanForward(). + * Visual Studio; we support only 2005 and later, so use + * _BitScanForward(). */ #include <intrin.h> #pragma intrinsic(_BitScanForward) |