Update C headers to be C++
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
#include "stdint.h"
|
||||
#include "stdint.hpp"
|
||||
|
||||
namespace math {
|
||||
template<typename T>
|
||||
@@ -74,8 +74,5 @@ static constexpr gte_float operator""_gf(long double value) {
|
||||
return gte_float::from_double(value);
|
||||
}
|
||||
|
||||
using sin_t = int32_t;
|
||||
using cos_t = int32_t;
|
||||
|
||||
sin_t sin(deg_t value);
|
||||
cos_t cos(deg_t value);
|
||||
gte_float sin(deg_t value);
|
||||
gte_float cos(deg_t value);
|
Reference in New Issue
Block a user