From 069b34101f5661273a3add568ece241188234a95 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 5 Apr 2013 21:16:25 -0700 Subject: [PATCH] Remove a warning. --- src/cpp/ripple/PathDB.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpp/ripple/PathDB.h b/src/cpp/ripple/PathDB.h index 138e78bf66..97e381e539 100644 --- a/src/cpp/ripple/PathDB.h +++ b/src/cpp/ripple/PathDB.h @@ -13,9 +13,9 @@ public: typedef boost::shared_ptr pointer; typedef const pointer& ref; - const unsigned int sIsExchange = 0x00001; - const unsigned int sIsOffer = 0x00002; - const unsigned int sIsDirty = 0x10000; + static const unsigned int sIsExchange = 0x00001; + static const unsigned int sIsOffer = 0x00002; + static const unsigned int sIsDirty = 0x10000; protected: currencyIssuer_t mIn;