Skip to content

Commit

Permalink
Merge pull request #6417 from knelli2/release_hot_fix
Browse files Browse the repository at this point in the history
Couple quick fixes to allow static execs to build after Release
  • Loading branch information
knelli2 authored Dec 17, 2024
2 parents 3085016 + 6ecbe38 commit a826681
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion containers/Dockerfile.buildenv
Original file line number Diff line number Diff line change
Expand Up @@ -571,4 +571,4 @@ RUN if [ ${UBUNTU_VERSION} != 18.04 ] && [ "$TARGETARCH" != "amd64" ]; then \
.. \
&& make ${PARALLEL_MAKE_ARG} CharacteristicExtract PreprocessCceWorldtube \
WriteCceWorldtubeCoordsToFile \
&& ctest -LE unit -R CharacteristicExtract
&& ctest -LE unit -R CharacteristicExtract -E KleinGordon
4 changes: 4 additions & 0 deletions src/Domain/Structure/SegmentId.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

#include "Domain/Structure/SegmentId.hpp"

#if BOOST_VERSION >= 106700
#include <boost/container_hash/hash.hpp>
#else
#include <boost/functional/hash.hpp>
#endif
#include <cstddef>
#include <functional>
#include <ostream>
Expand Down

0 comments on commit a826681

Please sign in to comment.