mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-21 00:40:45 +00:00
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:
parent
18e4697e05
commit
0851bcac04
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user