Move some output stream parameters forward.

This allows us to avoid removing parameter defaults for these functions.
This commit is contained in:
Michael Hansen
2023-06-05 13:56:25 -07:00
parent 46ea76c0e9
commit bf3599c87a
6 changed files with 54 additions and 45 deletions

View File

@@ -31,7 +31,7 @@ private:
std::string m_value;
};
void OutputString(PycRef<PycString> str, char prefix, bool triple,
std::ostream& stream, const char* parent_f_string_quote = nullptr);
void OutputString(std::ostream& stream, PycRef<PycString> str, char prefix,
bool triple = false, const char* parent_f_string_quote = nullptr);
#endif