Fix for build errors when building with gcc 13 (#1289)

This commit is contained in:
Scott Mitten 2024-08-14 09:38:23 -07:00 коммит произвёл GitHub
Родитель 24bb518038
Коммит 5116b27f75
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -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;
}
};