Removed compatibility code for Borland and Sun compilers which should not be necessary for a compiler supporting C++11 (as required by cppcheck).
This commit is contained in:
parent
1cda2f9fc8
commit
a6e134e811
|
@ -29,19 +29,6 @@
|
|||
#include <sstream>
|
||||
#include <climits>
|
||||
|
||||
// Define ULLONG_MAX and LLONG_MAX for Borland
|
||||
#ifdef __BORLANDC__
|
||||
#define ULLONG_MAX ULONG_MAX
|
||||
#define LLONG_MAX LONG_MAX
|
||||
#endif
|
||||
|
||||
// Define ULLONG_MAX and LLONG_MAX for SunCC on non-Solaris systems
|
||||
#if (defined(__SUNPRO_C) || defined(__SUNPRO_CC)) && \
|
||||
!(defined (__sun) || defined (__sun__))
|
||||
#define ULLONG_MAX ULONG_MAX
|
||||
#define LLONG_MAX LONG_MAX
|
||||
#endif
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
SymbolDatabase::SymbolDatabase(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
||||
|
|
Loading…
Reference in New Issue