From 623faa15501d09129668be195d35fc7ffb86903e Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Thu, 11 Jun 2015 11:58:40 -0400 Subject: [PATCH] Fix warning --- src/ripple/rpc/Coroutine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/rpc/Coroutine.h b/src/ripple/rpc/Coroutine.h index 1a42ab533..81964f759 100644 --- a/src/ripple/rpc/Coroutine.h +++ b/src/ripple/rpc/Coroutine.h @@ -41,7 +41,7 @@ public: void run (); private: - class Impl; + struct Impl; std::shared_ptr impl_; Coroutine (std::shared_ptr const&);