You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2016/11/09 18:40:20 UTC

[2/2] mesos git commit: Fixed header guards in stout/os/linux.hpp.

Fixed header guards in stout/os/linux.hpp.

Review: https://reviews.apache.org/r/53554/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ce8f1e6c
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ce8f1e6c
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/ce8f1e6c

Branch: refs/heads/master
Commit: ce8f1e6c582affaabca5113524d2f98ad857c82c
Parents: 89128c3
Author: Joseph Wu <jo...@mesosphere.io>
Authored: Wed Nov 9 10:39:01 2016 -0800
Committer: Joseph Wu <jo...@apache.org>
Committed: Wed Nov 9 10:39:01 2016 -0800

----------------------------------------------------------------------
 3rdparty/stout/include/stout/os/linux.hpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ce8f1e6c/3rdparty/stout/include/stout/os/linux.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/include/stout/os/linux.hpp b/3rdparty/stout/include/stout/os/linux.hpp
index bf12e0b..530f1a5 100644
--- a/3rdparty/stout/include/stout/os/linux.hpp
+++ b/3rdparty/stout/include/stout/os/linux.hpp
@@ -10,13 +10,13 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#ifndef __STOUT_OS_POSIX_HPP__
-#define __STOUT_OS_POSIX_HPP__
+#ifndef __STOUT_OS_LINUX_HPP__
+#define __STOUT_OS_LINUX_HPP__
 
 // This file contains Linux-only OS utilities.
 #ifndef __linux__
 #error "stout/os/linux.hpp is only available on Linux systems."
-#endif
+#endif // __linux__
 
 #include <sys/types.h> // For pid_t.
 
@@ -187,4 +187,4 @@ inline Try<Memory> memory()
 
 } // namespace os {
 
-#endif // __STOUT_OS_POSIX_HPP__
+#endif // __STOUT_OS_LINUX_HPP__