Skip to content

Commit 139375e

Browse files
authored
Include cstdint for GCC-13 (#245)
Include cstdint include for size_t
1 parent b3d09be commit 139375e

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

src/sql/ColumnType.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define SQLPARSER_COLUMN_TYPE_H
33

44
#include <ostream>
5+
#include <stdint.h>
56

67
namespace hsql {
78
enum class DataType {

src/sql/Expr.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#include "Expr.h"
2+
3+
#include <stdint.h>
24
#include <stdio.h>
35
#include <string.h>
6+
47
#include "SelectStatement.h"
58

69
namespace hsql {

src/sql/statements.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#include "statements.h"
2+
3+
#include <stdint.h>
4+
25
#include "AlterStatement.h"
36
#include "ImportExportOptions.h"
47

src/util/sqlhelper.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
21
#include "sqlhelper.h"
2+
33
#include <iostream>
44
#include <map>
55
#include <sstream>
6+
#include <stdint.h>
67
#include <string>
78

89
namespace hsql {

0 commit comments

Comments
 (0)