mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 07:34:03 -06:00
Trying to fix the windows build
This commit is contained in:
parent
eb2debc2c6
commit
152e236dda
2 changed files with 7 additions and 3 deletions
|
@ -190,10 +190,10 @@ private:
|
|||
~GCodeOutputStream() { this->close(); }
|
||||
|
||||
bool is_open() const { return f; }
|
||||
bool is_error() const { return ::ferror(f); }
|
||||
bool is_error() const;
|
||||
|
||||
void flush() { ::fflush(f); }
|
||||
void close() { if (f) ::fclose(f); }
|
||||
void flush();
|
||||
void close();
|
||||
|
||||
// Write a string into a file.
|
||||
void write(const std::string& what) { this->write(what.c_str()); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue