diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 16:03:04 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 16:03:04 (GMT) |
commit | eb58394e748b3bcca05d85bdacf641f6581b240b (patch) | |
tree | 6a6e28dbfff9c7e948d31a81ca850fdf61eba669 /src/linearextrude.cc | |
parent | d3fd45b248bd1ce5df383b5a40732ffba3e7d952 (diff) | |
parent | 263901c82d02dfb73fba2235de5593e2de0e232f (diff) |
Merge branch 'winfix1' of github.com:openscad/openscad into mingwcross1
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) << ", " |