diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 02:59:55 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 02:59:55 (GMT) |
commit | 263901c82d02dfb73fba2235de5593e2de0e232f (patch) | |
tree | 1dcd6ba62dd4ecd8c57a7c4a66aa1655ea74c59a /src/linearextrude.cc | |
parent | 1b38030f7e243c4eeb288d07084a99ff1e616e85 (diff) |
fix compilation and linking issues on mingw crossbuild
Diffstat (limited to 'src/linearextrude.cc')
-rw-r--r-- | src/linearextrude.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linearextrude.cc b/src/linearextrude.cc index 4d2730c..ba9e412 100644 --- a/src/linearextrude.cc +++ b/src/linearextrude.cc @@ -146,7 +146,7 @@ std::string LinearExtrudeNode::toString() const stream << this->name() << "("; if (!this->filename.empty()) { // Ignore deprecated parameters if empty - fs::path path(this->filename); + fs::path path( (std::string) this->filename ); stream << "file = " << this->filename << ", " "layer = " << QuotedString(this->layername) << ", " |