Trying to fix the windows build
This commit is contained in:
parent
eb2debc2c6
commit
152e236dda
2 changed files with 7 additions and 3 deletions
src/libslic3r
|
@ -2642,6 +2642,10 @@ std::string GCode::extrude_support(const ExtrusionEntityCollection &support_fill
|
|||
return gcode;
|
||||
}
|
||||
|
||||
bool GCode::GCodeOutputStream::is_error() const { return ::ferror(f); }
|
||||
void GCode::GCodeOutputStream::flush() { ::fflush(f); }
|
||||
void GCode::GCodeOutputStream::close() { if (f) ::fclose(f); }
|
||||
|
||||
void GCode::GCodeOutputStream::write(const char *what)
|
||||
{
|
||||
if (what != nullptr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue