You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ya...@apache.org on 2015/09/04 02:49:38 UTC

mesos git commit: Fixed Appc provisioner headers to conform to include guard naming convention.

Repository: mesos
Updated Branches:
  refs/heads/master 313591aa6 -> df012a241


Fixed Appc provisioner headers to conform to include guard naming convention.


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

Branch: refs/heads/master
Commit: df012a24191c5a99028d39747d2c4e2da104465a
Parents: 313591a
Author: Jiang Yan Xu <ya...@jxu.me>
Authored: Thu Sep 3 17:49:10 2015 -0700
Committer: Jiang Yan Xu <ya...@jxu.me>
Committed: Thu Sep 3 17:49:10 2015 -0700

----------------------------------------------------------------------
 src/slave/containerizer/provisioners/appc/paths.hpp | 4 ++--
 src/slave/containerizer/provisioners/appc/spec.hpp  | 6 +++---
 src/slave/containerizer/provisioners/appc/store.hpp | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/df012a24/src/slave/containerizer/provisioners/appc/paths.hpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/provisioners/appc/paths.hpp b/src/slave/containerizer/provisioners/appc/paths.hpp
index 54bab1f..fb3a1a7 100644
--- a/src/slave/containerizer/provisioners/appc/paths.hpp
+++ b/src/slave/containerizer/provisioners/appc/paths.hpp
@@ -16,8 +16,8 @@
  * limitations under the License.
  */
 
-#ifndef __MESOS_APPC_PATHS__
-#define __MESOS_APPC_PATHS__
+#ifndef __MESOS_APPC_PATHS_HPP__
+#define __MESOS_APPC_PATHS_HPP__
 
 #include <string>
 

http://git-wip-us.apache.org/repos/asf/mesos/blob/df012a24/src/slave/containerizer/provisioners/appc/spec.hpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/provisioners/appc/spec.hpp b/src/slave/containerizer/provisioners/appc/spec.hpp
index 5e4308a..63c7930 100644
--- a/src/slave/containerizer/provisioners/appc/spec.hpp
+++ b/src/slave/containerizer/provisioners/appc/spec.hpp
@@ -16,8 +16,8 @@
  * limitations under the License.
  */
 
-#ifndef __MESOS_APPC_SPEC__
-#define __MESOS_APPC_SPEC__
+#ifndef __MESOS_APPC_SPEC_HPP__
+#define __MESOS_APPC_SPEC_HPP__
 
 #include <string>
 
@@ -51,4 +51,4 @@ Try<AppcImageManifest> parse(const std::string& value);
 } // namespace internal {
 } // namespace mesos {
 
-#endif // __MESOS_APPC_SPEC__
+#endif // __MESOS_APPC_SPEC_HPP__

http://git-wip-us.apache.org/repos/asf/mesos/blob/df012a24/src/slave/containerizer/provisioners/appc/store.hpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/provisioners/appc/store.hpp b/src/slave/containerizer/provisioners/appc/store.hpp
index 95067f8..c4ce4b9 100644
--- a/src/slave/containerizer/provisioners/appc/store.hpp
+++ b/src/slave/containerizer/provisioners/appc/store.hpp
@@ -16,8 +16,8 @@
  * limitations under the License.
  */
 
-#ifndef __MESOS_APPC_STORE__
-#define __MESOS_APPC_STORE__
+#ifndef __MESOS_APPC_STORE_HPP__
+#define __MESOS_APPC_STORE_HPP__
 
 #include <string>
 #include <vector>
@@ -87,4 +87,4 @@ private:
 } // namespace internal {
 } // namespace mesos {
 
-#endif // __MESOS_APPC_STORE__
+#endif // __MESOS_APPC_STORE_HPP__