Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include cstdint for GCC-13 #245

Merged
merged 6 commits into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/sql/ColumnType.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define SQLPARSER_COLUMN_TYPE_H

#include <ostream>
#include <stdint.h>

namespace hsql {
enum class DataType {
Expand Down
3 changes: 3 additions & 0 deletions src/sql/Expr.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "Expr.h"

#include <stdint.h>
#include <stdio.h>
#include <string.h>

#include "SelectStatement.h"

namespace hsql {
Expand Down
3 changes: 3 additions & 0 deletions src/sql/statements.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#include "statements.h"

#include <stdint.h>

#include "AlterStatement.h"
#include "ImportExportOptions.h"

Expand Down
3 changes: 2 additions & 1 deletion src/util/sqlhelper.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

#include "sqlhelper.h"

#include <iostream>
#include <map>
#include <sstream>
#include <stdint.h>
#include <string>

namespace hsql {
Expand Down