Skip to content

Commit

Permalink
[libc] Add the missing math_extras.h include (#74259)
Browse files Browse the repository at this point in the history
math_extras.h is used in integer_utils.h when building for 32-bit
platforms but the include is missing.
  • Loading branch information
petrhosek committed Dec 4, 2023
1 parent e893f69 commit c33e5d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions libc/src/__support/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ add_header_library(
integer_utils.h
DEPENDS
.bit
.math_extras
.number_pair
libc.src.__support.common
libc.src.__support.CPP.type_traits
Expand Down
1 change: 1 addition & 0 deletions libc/src/__support/integer_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "src/__support/common.h"

#include "bit.h"
#include "math_extras.h"
#include "number_pair.h"

#include <stdint.h>
Expand Down

0 comments on commit c33e5d5

Please sign in to comment.