1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 19:29:53 +03:00
aports/community/gpick/boost-version.patch
2024-06-18 20:34:28 +00:00

12 lines
398 B
Diff

BOOST_VERSION is undefined when not including boost/version.hpp
--- a/source/dynv/Types.cpp
+++ b/source/dynv/Types.cpp
@@ -22,6 +22,7 @@
#include <algorithm>
#include <istream>
#include <boost/endian/conversion.hpp>
+#include <boost/version.hpp>
namespace dynv {
namespace xml {
bool serialize(std::ostream &stream, const Map &map, bool addRootElement = true, size_t indentationLevel = 1);