Skip to content

Commit 5b3a27c

Browse files
authored
Merge pull request #417 from penggrin12/remove-unnecessary-includes
Remove unnecessary includes
2 parents 6aadc59 + 11ee8ba commit 5b3a27c

5 files changed

Lines changed: 0 additions & 16 deletions

File tree

include/Matrix.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
#include "./raylib.hpp"
66
#include "./raymath.hpp"
77

8-
#ifndef RAYLIB_CPP_NO_MATH
9-
#include <cmath>
10-
#endif
11-
128
namespace raylib {
139
/**
1410
* Matrix type (OpenGL style 4x4 - right handed, column major)

include/Quaternion.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
#ifndef RAYLIB_CPP_NO_MATH
55
#include <cmath>
6-
#include <utility>
76
#endif
87

98
#include <string>

include/Vector2.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#ifndef RAYLIB_CPP_INCLUDE_VECTOR2_HPP_
22
#define RAYLIB_CPP_INCLUDE_VECTOR2_HPP_
33

4-
#ifndef RAYLIB_CPP_NO_MATH
5-
#include <cmath>
6-
#endif
74

85
#include <string>
96

include/Vector3.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
#ifndef RAYLIB_CPP_INCLUDE_VECTOR3_HPP_
22
#define RAYLIB_CPP_INCLUDE_VECTOR3_HPP_
33

4-
#ifndef RAYLIB_CPP_NO_MATH
5-
#include <cmath>
6-
#endif
7-
84
#include <string>
95

106
#include "./raylib-cpp-utils.hpp"

include/Vector4.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
#ifndef RAYLIB_CPP_INCLUDE_VECTOR4_HPP_
22
#define RAYLIB_CPP_INCLUDE_VECTOR4_HPP_
33

4-
#ifndef RAYLIB_CPP_NO_MATH
5-
#include <cmath>
6-
#include <utility>
7-
#endif
84

95
#include <string>
106

0 commit comments

Comments
 (0)