mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
include cstdint, limits for gcc 13
This commit is contained in:
parent
297b331435
commit
becda018c9
|
@ -24,6 +24,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <cstdint>
|
||||
|
||||
#include <xlnt/xlnt_config.hpp>
|
||||
|
||||
|
@ -35,8 +36,8 @@ namespace xlnt {
|
|||
struct XLNT_API phonetic_run
|
||||
{
|
||||
std::string text;
|
||||
uint32_t start;
|
||||
uint32_t end;
|
||||
std::uint32_t start;
|
||||
std::uint32_t end;
|
||||
bool preserve_space;
|
||||
|
||||
bool operator==(const phonetic_run &other) const;
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <cstdint>
|
||||
|
||||
#include <xlnt/xlnt_config.hpp>
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
#include <limits>
|
||||
#include <sstream>
|
||||
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
// @author: see AUTHORS file
|
||||
#include <cmath>
|
||||
#include <ctime>
|
||||
#include <cstdint>
|
||||
|
||||
#include <xlnt/utils/time.hpp>
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
// @author: see AUTHORS file
|
||||
#include <cmath>
|
||||
#include <ctime>
|
||||
#include <stdint>
|
||||
|
||||
#include <xlnt/utils/timedelta.hpp>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user