Workaround DR106.

This commit is contained in:
JoelKatz
2013-05-11 19:07:08 -07:00
parent acdb8969a3
commit b68ad91bdc
2 changed files with 7 additions and 4 deletions

View File

@@ -16,7 +16,12 @@
//
typedef std::pair<uint160, uint160> currencyIssuer_t;
#ifdef C11X
typedef std::pair<const uint160&, const uint160&> currencyIssuer_ct;
#else
typedef std::pair<uint160, uint160> currencyIssuer_ct; // C++ defect 106
#endif
class BookListeners
{