Summary:
just some simple styling changes. moving using boost::shared_ptr to .cpp
and using the full path name in .h
Reviewed by: boz, dreiss
Test Plan: compiled and tested on the adfinder
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665289
13f79535-47bb-0310-9956-
ffa450edef68
#include <assert.h>
#include <pthread.h>
+using boost::shared_ptr;
+
namespace facebook { namespace thrift { namespace concurrency {
/**
#define _THRIFT_CONCURRENCY_MUTEX_H_ 1
#include <boost/shared_ptr.hpp>
-using boost::shared_ptr;
namespace facebook { namespace thrift { namespace concurrency {
private:
class impl;
- shared_ptr<impl> impl_;
+ boost::shared_ptr<impl> impl_;
};
class ReadWriteMutex {
private:
class impl;
- shared_ptr<impl> impl_;
+ boost::shared_ptr<impl> impl_;
};
class Guard {