Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c9af687 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Add missing #includes.

libc++ is stricter about transitive includes for C++23.

Change-Id: I720f5445955e5c233daacf9817d1780888294150
parent dfd54388
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@
// #define LOG_NDEBUG 0
#define LOG_TAG "C2AllocatorBlob"

#include <memory>
#include <mutex>
#include <set>

#include <C2AllocatorBlob.h>
+2 −0
Original line number Diff line number Diff line
@@ -22,7 +22,9 @@
#include <C2Buffer.h>
#include <C2BlockInternal.h>

#include <atomic>
#include <functional>
#include <mutex>

namespace android {
class GraphicBuffer;
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
 * limitations under the License.
 */

#include <algorithm>
#include <cassert>
#include <math.h>
#include "IntegerRatio.h"
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
 * limitations under the License.
 */

#include <algorithm>
#include <cassert>
#include <math.h>
#include "SincResampler.h"
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
 * limitations under the License.
 */

#include <algorithm>
#include <cassert>
#include <math.h>

Loading