From 419f223f2e3ead8b887a7614151b79556f139a61 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sat, 11 May 2013 19:13:06 -0700 Subject: [PATCH] DR106 --- src/cpp/ripple/PathDB.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cpp/ripple/PathDB.h b/src/cpp/ripple/PathDB.h index 59a4d5747f..0a22843c10 100644 --- a/src/cpp/ripple/PathDB.h +++ b/src/cpp/ripple/PathDB.h @@ -7,7 +7,12 @@ #include "TaggedCache.h" typedef std::pair currencyIssuer_t; + +#ifdef C11X typedef std::pair currencyIssuer_ct; +#else +typedef std::pair currencyIssuer_ct; +#endif class PathDBEntry {