Skip to content

Commit

Permalink
style: Unify naming convensations
Browse files Browse the repository at this point in the history
  • Loading branch information
AkiyukiOkayasu committed Dec 15, 2021
1 parent 9b12276 commit bbcbfa0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/ame_Math.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ constexpr inline float sinf (float x)
//コンパイル時
auto fabs = [] (float v) -> float
{ return (v < float (0.0)) ? (-v) : (v); };
float x_sq = -(x * x);

float xSq = -(x * x);
float series = x;
float tmp = x;
float fact = float (2.0);
Expand Down

0 comments on commit bbcbfa0

Please sign in to comment.