From: Jay Freeman (saurik) Date: Sat, 10 Oct 2015 21:40:36 +0000 (-0700) Subject: Port to Apple's pathetic third-world toolchain :/. X-Git-Tag: v2.1.0~69 X-Git-Url: https://git.saurik.com/ldid.git/commitdiff_plain/4d453c35ba48a83618c19c613100bd899266327f Port to Apple's pathetic third-world toolchain :/. --- diff --git a/ldid.hpp b/ldid.hpp index 8ea6cf7..576962d 100644 --- a/ldid.hpp +++ b/ldid.hpp @@ -91,8 +91,21 @@ class UnionFolder : public Folder { private: + class StringBuffer : + public std::stringbuf + { + public: + StringBuffer() { + } + + StringBuffer(const StringBuffer &rhs) : + std::stringbuf(rhs.str()) + { + } + }; + Folder &parent_; - std::map files_; + std::map files_; public: UnionFolder(Folder &parent);