fix <cstdint> header miss, which may cause compile errors under new version of libstdc++

This commit is contained in:
WentsingNee 2023-05-26 22:48:58 +08:00
parent 297b331435
commit 8e8129b86a
4 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#pragma once #pragma once
#include <string> #include <string>
#include <cstdint>
#include <xlnt/xlnt_config.hpp> #include <xlnt/xlnt_config.hpp>

View File

@ -22,6 +22,7 @@
// @author: see AUTHORS file // @author: see AUTHORS file
#include <cmath> #include <cmath>
#include <ctime> #include <ctime>
#include <cstdint>
#include <xlnt/utils/time.hpp> #include <xlnt/utils/time.hpp>

View File

@ -22,6 +22,7 @@
// @author: see AUTHORS file // @author: see AUTHORS file
#include <cmath> #include <cmath>
#include <ctime> #include <ctime>
#include <cstdint>
#include <xlnt/utils/timedelta.hpp> #include <xlnt/utils/timedelta.hpp>

View File

@ -20,6 +20,7 @@
// //
// @license: http://www.opensource.org/licenses/mit-license.php // @license: http://www.opensource.org/licenses/mit-license.php
// @author: see AUTHORS file // @author: see AUTHORS file
#include <cstdint>
#include <xlnt/utils/datetime.hpp> #include <xlnt/utils/datetime.hpp>
#include <xlnt/utils/variant.hpp> #include <xlnt/utils/variant.hpp>