diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 20:13:20 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 20:13:20 (GMT) |
commit | be9c424a152a3a58ca9f22ceecc5d31c640b4157 (patch) | |
tree | 505be4a48fde652446deb89985668492549c6cd8 | |
parent | 06420a3ef9d577e0ccc725261a0275423b095232 (diff) |
cleanup
-rw-r--r-- | openscad.pro | 1 | ||||
-rwxr-xr-x | scripts/mingw-x-build-dependencies.sh | 1 | ||||
-rw-r--r-- | src/linearextrude.cc | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/openscad.pro b/openscad.pro index f6736c0..34f8705 100644 --- a/openscad.pro +++ b/openscad.pro @@ -316,4 +316,3 @@ INSTALLS += applications icons.path = $$PREFIX/share/pixmaps icons.files = icons/openscad.png INSTALLS += icons - diff --git a/scripts/mingw-x-build-dependencies.sh b/scripts/mingw-x-build-dependencies.sh index a327b93..422c174 100755 --- a/scripts/mingw-x-build-dependencies.sh +++ b/scripts/mingw-x-build-dependencies.sh @@ -53,7 +53,6 @@ cd $MXEDIR echo "make mpfr eigen opencsg cgal qt -j $NUMCPU JOBS=$NUMJOBS" make mpfr eigen opencsg cgal qt -j $NUMCPU JOBS=$NUMJOBS #make mpfr -j$NUMCPU JOBS=$NUMJOBS # for testing -echo 'make' echo "leaving" $MXEDIR echo "entering $OPENSCADDIR" diff --git a/src/linearextrude.cc b/src/linearextrude.cc index ba9e412..f68db24 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( (std::string) this->filename ); + fs::path path((std::string)this->filename ); stream << "file = " << this->filename << ", " "layer = " << QuotedString(this->layername) << ", " |