Skip to content

Commit

Permalink
include <limits> to define numeric_limits in Polygon
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed May 25, 2024
1 parent e08a450 commit b62140f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MBSolver/Solver/src/Polygon.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <limits>
#include <cstdint>
#include <Volume.h>
#include <Edge.h>
Expand All @@ -16,7 +17,8 @@ namespace {
template <typename V>
struct vectorWriter {
std::ostream &os;
vectorWriter(std::ostream &os_)

explicit vectorWriter(std::ostream &os_)
:os(os_) {}
void operator( )(V v) {
vcell_persist::save(os,v);
Expand Down

0 comments on commit b62140f

Please sign in to comment.