Skip to content

Commit

Permalink
Add missing includes in absl hash.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 707236882
Change-Id: I787062ea1153878957589352fb24265ea7df494f
  • Loading branch information
ezbr authored and copybara-github committed Dec 17, 2024
1 parent e281c17 commit f623b01
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions absl/hash/internal/hash.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@

#include "absl/hash/internal/hash.h"

#include <cstddef>
#include <cstdint>
#include <type_traits>

#include "absl/base/attributes.h"
#include "absl/base/config.h"
#include "absl/hash/internal/low_level_hash.h"

namespace absl {
ABSL_NAMESPACE_BEGIN
namespace hash_internal {
Expand Down
4 changes: 4 additions & 0 deletions absl/hash/internal/hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <deque>
#include <forward_list>
Expand All @@ -56,7 +58,9 @@
#include <utility>
#include <vector>

#include "absl/base/attributes.h"
#include "absl/base/internal/unaligned_access.h"
#include "absl/base/optimization.h"
#include "absl/base/port.h"
#include "absl/container/fixed_array.h"
#include "absl/hash/internal/city.h"
Expand Down

0 comments on commit f623b01

Please sign in to comment.