You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/12/11 01:00:53 UTC

svn commit: r1419915 - /incubator/mesos/branches/0.10.x/src/detector/detector.cpp

Author: benh
Date: Tue Dec 11 00:00:53 2012
New Revision: 1419915

URL: http://svn.apache.org/viewvc?rev=1419915&view=rev
Log:
Added explicit 'using process::wait' in detector.cpp for
disambiguation (necessary on Linux).

Modified:
    incubator/mesos/branches/0.10.x/src/detector/detector.cpp

Modified: incubator/mesos/branches/0.10.x/src/detector/detector.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.10.x/src/detector/detector.cpp?rev=1419915&r1=1419914&r2=1419915&view=diff
==============================================================================
--- incubator/mesos/branches/0.10.x/src/detector/detector.cpp (original)
+++ incubator/mesos/branches/0.10.x/src/detector/detector.cpp Tue Dec 11 00:00:53 2012
@@ -49,6 +49,7 @@ using namespace mesos::internal;
 using process::Process;
 using process::Timer;
 using process::UPID;
+using process::wait; // Necessary on some OS's to disambiguate.
 
 using std::pair;
 using std::string;