mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-25 03:42:05 +00:00
Trying to fix the windows build
This commit is contained in:
@@ -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()); }
|
||||
|
||||
Reference in New Issue
Block a user