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 <[email protected]> Authored: Fri Sep 25 11:41:16 2015 -0700 Committer: Vinod Kone <[email protected]> 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__
