You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by dr...@apache.org on 2009/02/07 03:36:46 UTC

svn commit: r741826 - in /incubator/thrift/trunk/contrib/fb303/cpp: FacebookBase.h ServiceTracker.cpp ServiceTracker.h

Author: dreiss
Date: Sat Feb  7 02:36:46 2009
New Revision: 741826

URL: http://svn.apache.org/viewvc?rev=741826&view=rev
Log:
THRIFT-292. Make the #includes in fb303 match the rest of Thrift

Specifically, by removing the "thrift/" prefix.

Modified:
    incubator/thrift/trunk/contrib/fb303/cpp/FacebookBase.h
    incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.cpp
    incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.h

Modified: incubator/thrift/trunk/contrib/fb303/cpp/FacebookBase.h
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/contrib/fb303/cpp/FacebookBase.h?rev=741826&r1=741825&r2=741826&view=diff
==============================================================================
--- incubator/thrift/trunk/contrib/fb303/cpp/FacebookBase.h (original)
+++ incubator/thrift/trunk/contrib/fb303/cpp/FacebookBase.h Sat Feb  7 02:36:46 2009
@@ -9,8 +9,8 @@
 
 #include "FacebookService.h"
 
-#include "thrift/server/TServer.h"
-#include "thrift/concurrency/Mutex.h"
+#include "server/TServer.h"
+#include "concurrency/Mutex.h"
 
 #include <time.h>
 #include <string>

Modified: incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.cpp
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.cpp?rev=741826&r1=741825&r2=741826&view=diff
==============================================================================
--- incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.cpp (original)
+++ incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.cpp Sat Feb  7 02:36:46 2009
@@ -8,7 +8,7 @@
 
 #include "FacebookBase.h"
 #include "ServiceTracker.h"
-#include "thrift/concurrency/ThreadManager.h"
+#include "concurrency/ThreadManager.h"
 
 using namespace std;
 using namespace facebook::fb303;

Modified: incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.h
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.h?rev=741826&r1=741825&r2=741826&view=diff
==============================================================================
--- incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.h (original)
+++ incubator/thrift/trunk/contrib/fb303/cpp/ServiceTracker.h Sat Feb  7 02:36:46 2009
@@ -87,7 +87,7 @@
 #include <map>
 #include <boost/shared_ptr.hpp>
 
-#include "thrift/concurrency/Mutex.h"
+#include "concurrency/Mutex.h"
 
 
 namespace facebook { namespace thrift { namespace concurrency {