Skip to content

Commit c2e58c4

Browse files
committed
Rename include guards from GEOMETRY_LIBRARY_ to CPP_GEOMETRY_LIBRARY_
1 parent 09f88a3 commit c2e58c4

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

include/CppGeometryLibrary/LatLng.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// This file has been modified from the original work,
1212
// including a port from Java to C++.
1313

14-
#ifndef GEOMETRY_LIBRARY_LATLNG
15-
#define GEOMETRY_LIBRARY_LATLNG
14+
#ifndef CPP_GEOMETRY_LIBRARY_LATLNG
15+
#define CPP_GEOMETRY_LIBRARY_LATLNG
1616

1717
#include <cmath>
1818

@@ -53,4 +53,4 @@ class LatLng {
5353
}
5454
};
5555

56-
#endif // GEOMETRY_LIBRARY_LATLNG
56+
#endif // CPP_GEOMETRY_LIBRARY_LATLNG

include/CppGeometryLibrary/MathUtil.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// This file has been modified from the original work,
1212
// including a port from Java to C++.
1313

14-
#ifndef GEOMETRY_LIBRARY_MATH_UTIL
15-
#define GEOMETRY_LIBRARY_MATH_UTIL
14+
#ifndef CPP_GEOMETRY_LIBRARY_MATH_UTIL
15+
#define CPP_GEOMETRY_LIBRARY_MATH_UTIL
1616

1717
#include <cmath>
1818
#include <algorithm>
@@ -122,4 +122,4 @@ class MathUtil {
122122
}
123123
};
124124

125-
#endif // GEOMETRY_LIBRARY_MATH_UTIL
125+
#endif // CPP_GEOMETRY_LIBRARY_MATH_UTIL

include/CppGeometryLibrary/PolyUtil.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// This file has been modified from the original work,
1212
// including a port from Java to C++.
1313

14-
#ifndef GEOMETRY_LIBRARY_POLY_UTIL
15-
#define GEOMETRY_LIBRARY_POLY_UTIL
14+
#ifndef CPP_GEOMETRY_LIBRARY_POLY_UTIL
15+
#define CPP_GEOMETRY_LIBRARY_POLY_UTIL
1616

1717
#include "MathUtil.hpp"
1818
#include "SphericalUtil.hpp"
@@ -308,4 +308,4 @@ class PolyUtil {
308308
}
309309
};
310310

311-
#endif // GEOMETRY_LIBRARY_POLY_UTIL
311+
#endif // CPP_GEOMETRY_LIBRARY_POLY_UTIL

include/CppGeometryLibrary/SphericalUtil.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// This file has been modified from the original work,
1212
// including a port from Java to C++.
1313

14-
#ifndef GEOMETRY_LIBRARY_SPHERICAL_UTIL
15-
#define GEOMETRY_LIBRARY_SPHERICAL_UTIL
14+
#ifndef CPP_GEOMETRY_LIBRARY_SPHERICAL_UTIL
15+
#define CPP_GEOMETRY_LIBRARY_SPHERICAL_UTIL
1616

1717
#include <optional>
1818

@@ -255,4 +255,4 @@ class SphericalUtil {
255255
}
256256
};
257257

258-
#endif // GEOMETRY_LIBRARY_SPHERICAL_UTIL
258+
#endif // CPP_GEOMETRY_LIBRARY_SPHERICAL_UTIL

0 commit comments

Comments
 (0)