Skip to content

Commit 8b1a4b5

Browse files
committed
Add missing includes
1 parent fa0f49f commit 8b1a4b5

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

libcxx/include/__random/negative_binomial_distribution.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#ifndef _LIBCPP___RANDOM_NEGATIVE_BINOMIAL_DISTRIBUTION_H
1010
#define _LIBCPP___RANDOM_NEGATIVE_BINOMIAL_DISTRIBUTION_H
1111

12+
#include <__assert>
1213
#include <__config>
1314
#include <__random/bernoulli_distribution.h>
1415
#include <__random/gamma_distribution.h>

libcxx/include/__ranges/repeat_view.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#ifndef _LIBCPP___RANGES_REPEAT_VIEW_H
1111
#define _LIBCPP___RANGES_REPEAT_VIEW_H
1212

13+
#include <__assert>
1314
#include <__concepts/constructible.h>
1415
#include <__concepts/same_as.h>
1516
#include <__concepts/semiregular.h>

libcxx/include/new

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ void operator delete[](void* ptr, void*) noexcept;
9292
#include <__type_traits/is_function.h>
9393
#include <__type_traits/is_same.h>
9494
#include <__type_traits/remove_cv.h>
95+
#include <__verbose_abort>
9596
#include <cstddef>
9697
#include <version>
9798

0 commit comments

Comments
 (0)