Skip to content

Commit

Permalink
Merge pull request #3 from kevinbackhouse/add-cstdint
Browse files Browse the repository at this point in the history
Fix compile error due to uint64_t not being defined
  • Loading branch information
kevinbackhouse authored Jul 2, 2024
2 parents b2c75ca + 2cdad8d commit 0ad5dac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/DBusParseUtils/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <string>
#include <vector>
#include <cstdint>

#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
Expand Down

0 comments on commit 0ad5dac

Please sign in to comment.