Skip to content

Commit

Permalink
Unified header guard style in eos::core namespace
Browse files Browse the repository at this point in the history
Adding EOS_ and removing the trailing underscore, where it wasn't consistent yet.
  • Loading branch information
patrikhuber committed May 13, 2019
1 parent 8b5fc5b commit 4381fd1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions include/eos/core/LandmarkMapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
*/
#pragma once

#ifndef LANDMARKMAPPER_HPP_
#define LANDMARKMAPPER_HPP_
#ifndef EOS_LANDMARKMAPPER_HPP
#define EOS_LANDMARKMAPPER_HPP

#include "eos/cpp17/optional.hpp"

Expand Down Expand Up @@ -160,4 +160,4 @@ class LandmarkMapper
} /* namespace core */
} /* namespace eos */

#endif /* LANDMARKMAPPER_HPP_ */
#endif /* EOS_LANDMARKMAPPER_HPP */
6 changes: 3 additions & 3 deletions include/eos/core/Mesh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
*/
#pragma once

#ifndef EOS_MESH_HPP_
#define EOS_MESH_HPP_
#ifndef EOS_MESH_HPP
#define EOS_MESH_HPP

#include "Eigen/Core"

Expand Down Expand Up @@ -192,4 +192,4 @@ inline void write_textured_obj(Mesh mesh, std::string filename)
} /* namespace core */
} /* namespace eos */

#endif /* EOS_MESH_HPP_ */
#endif /* EOS_MESH_HPP */
6 changes: 3 additions & 3 deletions include/eos/core/image/opencv_interop.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
*/
#pragma once

#ifndef EOS_IMAGE_OPENCV_INTEROP_HPP_
#define EOS_IMAGE_OPENCV_INTEROP_HPP_
#ifndef EOS_IMAGE_OPENCV_INTEROP_HPP
#define EOS_IMAGE_OPENCV_INTEROP_HPP

#include "eos/core/Image.hpp"

Expand Down Expand Up @@ -132,4 +132,4 @@ inline Image4u from_mat_with_alpha(const cv::Mat& image)
} /* namespace core */
} /* namespace eos */

#endif /* EOS_IMAGE_OPENCV_INTEROP_HPP_ */
#endif /* EOS_IMAGE_OPENCV_INTEROP_HPP */
6 changes: 3 additions & 3 deletions include/eos/core/read_pts_landmarks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
*/
#pragma once

#ifndef READ_PTS_LANDMARKS_HPP_
#define READ_PTS_LANDMARKS_HPP_
#ifndef EOS_READ_PTS_LANDMARKS_HPP
#define EOS_READ_PTS_LANDMARKS_HPP

#include "eos/core/Landmark.hpp"

Expand Down Expand Up @@ -91,4 +91,4 @@ inline LandmarkCollection<Eigen::Vector2f> read_pts_landmarks(std::string filena
} /* namespace core */
} /* namespace eos */

#endif /* READ_PTS_LANDMARKS_HPP_ */
#endif /* EOS_READ_PTS_LANDMARKS_HPP */

0 comments on commit 4381fd1

Please sign in to comment.