From 94ed513ce40fa0081480733f3df508bdb1f64692 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 59a4d5747..0a22843c1 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 {