Skip to content

Commit bda2527

Browse files
committed
Move headers into include/CppGeometryLibrary/ to avoid name conflicts
1 parent b6f4ffc commit bda2527

22 files changed

Lines changed: 19 additions & 19 deletions

examples/poly_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22
#include <vector>
33

4-
#include "PolyUtil.hpp"
4+
#include <CppGeometryLibrary/PolyUtil.hpp>
55

66
int main() {
77
// Bounding box around Midtown Manhattan

examples/spherical_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22
#include <vector>
33

4-
#include "SphericalUtil.hpp"
4+
#include <CppGeometryLibrary/SphericalUtil.hpp>
55

66
int main() {
77
LatLng newYork = { 40.7128, -74.0060 };
File renamed without changes.

tests/LatLng/operator_equal.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <gtest/gtest.h>
22

3-
#include "LatLng.hpp"
3+
#include <CppGeometryLibrary/LatLng.hpp>
44

55
TEST(LatLng, operator_equal) {
66
// Basic equality and inequality

tests/MathUtil/mod.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <gtest/gtest.h>
22

3-
#include "MathUtil.hpp"
3+
#include <CppGeometryLibrary/MathUtil.hpp>
44

55

66
TEST(MathUtil, mod_positive) {

tests/PolyUtil/containsLocation.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <gtest/gtest.h>
22
#include <vector>
33

4-
#include "PolyUtil.hpp"
4+
#include <CppGeometryLibrary/PolyUtil.hpp>
55

66

77
TEST(PolyUtil, containsLocation) {

tests/PolyUtil/distanceToLine.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <gtest/gtest.h>
22
#include <vector>
33

4-
#include "PolyUtil.hpp"
5-
#include "SphericalUtil.hpp"
4+
#include <CppGeometryLibrary/PolyUtil.hpp>
5+
#include <CppGeometryLibrary/SphericalUtil.hpp>
66

77

88
TEST(PolyUtil, distanceToLine) {

0 commit comments

Comments
 (0)