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/01/28 01:22:13 UTC

svn commit: r1236937 - /incubator/mesos/trunk/third_party/libprocess/include/process/future.hpp

Author: benh
Date: Sat Jan 28 00:22:13 2012
New Revision: 1236937

URL: http://svn.apache.org/viewvc?rev=1236937&view=rev
Log:
Using stdlib.h for abort instead of abort.h (does abort.h even exist? not sure what I was thinking).

Modified:
    incubator/mesos/trunk/third_party/libprocess/include/process/future.hpp

Modified: incubator/mesos/trunk/third_party/libprocess/include/process/future.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/third_party/libprocess/include/process/future.hpp?rev=1236937&r1=1236936&r2=1236937&view=diff
==============================================================================
--- incubator/mesos/trunk/third_party/libprocess/include/process/future.hpp (original)
+++ incubator/mesos/trunk/third_party/libprocess/include/process/future.hpp Sat Jan 28 00:22:13 2012
@@ -1,8 +1,8 @@
 #ifndef __PROCESS_FUTURE_HPP__
 #define __PROCESS_FUTURE_HPP__
 
-#include <abort.h>
 #include <assert.h>
+#include <stdlib.h> // For abort.
 
 #include <queue>
 #include <set>