Define UINT64_MAX when it's not defined

It looks like GCC 4.4.x does not define UINT64_MAX so define it for
those platforms.

	* src/abg-dwarf-reader.cc: Define UINT64_MAX when it's not defined.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2018-10-17 10:41:35 +02:00
parent 18e4697e05
commit 0851bcac04

View File

@ -62,6 +62,10 @@ ABG_BEGIN_EXPORT_DECLARATIONS
ABG_END_EXPORT_DECLARATIONS
// </headers defining libabigail's API>
#ifndef UINT64_MAX
#define UINT64_MAX 0xffffffffffffffff
#endif
using std::string;
namespace abigail