mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
22 lines
434 B
Plaintext
22 lines
434 B
Plaintext
From b2ea550b52fdfb60f4a93b49f5d05ba48235d742 Mon Sep 17 00:00:00 2001
|
|
From: Begasus <begasus@gmail.com>
|
|
Date: Mon, 20 Mar 2023 18:05:50 +0100
|
|
Subject: Fix size_t being undeclared
|
|
|
|
|
|
diff --git a/src/lib/WPXTable.h b/src/lib/WPXTable.h
|
|
index bdbaf79..98cbf19 100644
|
|
--- a/src/lib/WPXTable.h
|
|
+++ b/src/lib/WPXTable.h
|
|
@@ -37,6 +37,7 @@
|
|
#define _WPXTABLE_H
|
|
|
|
#include <vector>
|
|
+#include <stddef.h>
|
|
|
|
struct WPXTableCell
|
|
{
|
|
--
|
|
2.37.3
|
|
|