Fix for build errors when building with gcc 13 (#1289)
This commit is contained in:
Родитель
24bb518038
Коммит
5116b27f75
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include <vector>
|
||||
#include <random>
|
||||
#include <stdexcept>
|
||||
#include <limits>
|
||||
|
||||
using std::string;
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#if (HAVE_EXCEPTIONS)
|
||||
#include <exception>
|
||||
#include <stdexcept>
|
||||
#endif
|
||||
|
||||
namespace MAT_NS_BEGIN
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include "ctmacros.hpp"
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "ctmacros.hpp"
|
||||
#include "IModule.hpp"
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ class ShadowBondSplicer : protected MAT::BondSplicer
|
|||
{
|
||||
FullDumpBinaryBlob output;
|
||||
static_cast<std::vector<uint8_t>&>(output) = MAT::BondSplicer::splice();
|
||||
return std::move(output);
|
||||
return output;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче