diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 19:29:14 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 19:29:14 (GMT) |
commit | 8cc442369fa95b61b2a475f7cd1d63f3ab7ca713 (patch) | |
tree | ad2ca17f6c2239a608650dea912f48a835c8368d /src/surface.cc | |
parent | 1b38030f7e243c4eeb288d07084a99ff1e616e85 (diff) |
fix bugs in build
Diffstat (limited to 'src/surface.cc')
-rw-r--r-- | src/surface.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/surface.cc b/src/surface.cc index d962e38..2fa3717 100644 --- a/src/surface.cc +++ b/src/surface.cc @@ -225,7 +225,7 @@ PolySet *SurfaceNode::evaluate_polyset(class PolySetEvaluator *) const std::string SurfaceNode::toString() const { std::stringstream stream; - fs::path path(this->filename); + fs::path path((std::string)this->filename); stream << this->name() << "(file = " << this->filename << ", " "center = " << (this->center ? "true" : "false") |