mirror of
https://github.com/Z3Prover/z3
synced 2026-02-13 04:13:01 +00:00
Revert "Merge pull request #8190 from Z3Prover/copilot/fix-std-format-usage"
This reverts commitd9bdb6b83c, reversing changes made to8b188621a5.
This commit is contained in:
parent
3bf271bb42
commit
d5e0216070
7 changed files with 104 additions and 87 deletions
|
|
@ -71,11 +71,3 @@ inline std::string& operator+=(std::string& s, mk_pp const& pp) {
|
|||
return s = s + pp;
|
||||
}
|
||||
|
||||
// Helper function to convert streamable objects (like mk_pp) to strings for use with std::format
|
||||
template<typename T>
|
||||
inline std::string to_string(T const& obj) {
|
||||
std::ostringstream strm;
|
||||
strm << obj;
|
||||
return std::move(strm).str();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue