You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2015/09/25 20:41:41 UTC

mesos git commit: Added missing header guards for master/validation.hpp.

Repository: mesos
Updated Branches:
  refs/heads/master bdce5f265 -> 1d44ebac1


Added missing header guards for master/validation.hpp.

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


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

Branch: refs/heads/master
Commit: 1d44ebac17b7bb1d6fb625f7ff1b9d23569574ef
Parents: bdce5f2
Author: Isabel Jimenez <co...@isabeljimenez.com>
Authored: Fri Sep 25 11:41:16 2015 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Fri Sep 25 11:41:16 2015 -0700

----------------------------------------------------------------------
 src/master/validation.hpp | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/1d44ebac/src/master/validation.hpp
----------------------------------------------------------------------
diff --git a/src/master/validation.hpp b/src/master/validation.hpp
index 3434868..5f7b761 100644
--- a/src/master/validation.hpp
+++ b/src/master/validation.hpp
@@ -16,6 +16,9 @@
  * limitations under the License.
  */
 
+#ifndef __MASTER_VALIDATION_HPP__
+#define __MASTER_VALIDATION_HPP__
+
 #include <google/protobuf/repeated_field.h>
 
 #include <mesos/mesos.hpp>
@@ -133,3 +136,5 @@ Option<Error> validate(
 } // namespace master {
 } // namespace internal {
 } // namespace mesos {
+
+#endif // __MASTER_VALIDATION_HPP__