Skip to content

Commit 381c2c1

Browse files
alyssaislawrinn
authored andcommitted
Add missing <cstdint> includes
These files use types from <cstdint> without including it. Without the includes, the build fails for musl.
1 parent a55878f commit 381c2c1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

driver/interface/Exception.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#ifndef _EXCEPTION_H_
2222
#define _EXCEPTION_H_
2323

24+
#include <cstdint>
2425
#include <stdexcept>
2526
#include "class/SQLString.h"
2627

driver/template/CArray.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <initializer_list>
2525
#include <vector>
2626
#include <stdexcept>
27+
#include <cstdint>
2728
#include <cstring>
2829
#include <string>
2930

0 commit comments

Comments
 (0)