Skip to content

Commit

Permalink
[Fix] uint64_t not defined on alphine linux
Browse files Browse the repository at this point in the history
  • Loading branch information
lixun910 committed Dec 20, 2024
1 parent a2a40be commit 910ef62
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion sa/LISA.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
#include "../pg/geoms.h"
#endif

#include <cstdint>
#include <cstdint> // C++ header - for std:: namespace
#include <stdint.h> // C header - guarantees global namespace

#if !defined(__UINT64_TYPE__) && !defined(uint64_t)
typedef unsigned long long uint64_t;
#endif

#include <map>
#include <list>
#include <string>
Expand Down

0 comments on commit 910ef62

Please sign in to comment.