From cd36c6cc07a450e1625cedbe8858682bdb216fb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atle=20Hellvik=20Havs=C3=B8?= Date: Sat, 20 Nov 2010 17:09:51 +0100 Subject: Minor change with State. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Atle Hellvik Havsø --- common/message.cpp | 2 +- common/message.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'common') diff --git a/common/message.cpp b/common/message.cpp index bc0e3dd..b69ddef 100644 --- a/common/message.cpp +++ b/common/message.cpp @@ -134,7 +134,7 @@ Message::RoundState::RoundState() : BoostBase(Types::RoundState) { } -Message::RoundState::RoundState(State::p state_) : BoostBase(Types::RoundState), state(state_) { +Message::RoundState::RoundState(State state_) : BoostBase(Types::RoundState), state(state_) { } diff --git a/common/message.h b/common/message.h index 26deb32..447d12d 100644 --- a/common/message.h +++ b/common/message.h @@ -138,9 +138,9 @@ namespace Message { typedef boost::shared_ptr p; RoundState(); - RoundState(State::p state_); + RoundState(State state_); - State::p state; + State state; virtual void serialize(boost::archive::text_oarchive& ar); virtual void deserialize(boost::archive::text_iarchive& ar); -- cgit v1.2.3