Skip to content

Commit

Permalink
[clang-tidy] Promote some performance-* as a coding error (#7194)
Browse files Browse the repository at this point in the history
* Promote performance-type-promotion-in-math-fn as a coding error
* Promote performance-faster-string-find too (which is not problematic currently)
* Same for performance-implicit-cast-in-loop
* Fix remaining tidy points
  • Loading branch information
nerzhul committed Apr 4, 2018
1 parent 392e80e commit 077f231
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions src/content_cao.cpp
Expand Up @@ -908,8 +908,7 @@ void GenericCAO::step(float dtime, ClientEnvironment *env)
updateTextures(m_previous_texture_modifier);
}
}
if(!getParent() && fabs(m_prop.automatic_rotate) > 0.001)
{
if (!getParent() && std::fabs(m_prop.automatic_rotate) > 0.001) {
m_yaw += dtime * m_prop.automatic_rotate * 180 / M_PI;
updateNodePos();
}
Expand Down
12 changes: 6 additions & 6 deletions src/game.cpp
Expand Up @@ -3638,12 +3638,12 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime,
float time_of_day_smooth = runData.time_of_day_smooth;
float time_of_day = client->getEnv().getTimeOfDayF();

static const float maxsm = 0.05;
static const float todsm = 0.05;
static const float maxsm = 0.05f;
static const float todsm = 0.05f;

if (fabs(time_of_day - time_of_day_smooth) > maxsm &&
fabs(time_of_day - time_of_day_smooth + 1.0) > maxsm &&
fabs(time_of_day - time_of_day_smooth - 1.0) > maxsm)
if (std::fabs(time_of_day - time_of_day_smooth) > maxsm &&
std::fabs(time_of_day - time_of_day_smooth + 1.0) > maxsm &&
std::fabs(time_of_day - time_of_day_smooth - 1.0) > maxsm)
time_of_day_smooth = time_of_day;

if (time_of_day_smooth > 0.8 && time_of_day < 0.2)
Expand Down Expand Up @@ -3715,7 +3715,7 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime,
video::EFT_FOG_LINEAR,
100000 * BS,
110000 * BS,
0.01,
0.01f,
false, // pixel fog
false // range fog
);
Expand Down
2 changes: 1 addition & 1 deletion util/travis/clangtidy.sh
Expand Up @@ -19,7 +19,7 @@ cd ..
echo "Performing clang-tidy checks..."
./util/travis/run-clang-tidy.py -clang-tidy-binary=${CLANG_TIDY} -p cmakebuild \
-checks='-*,modernize-use-emplace,modernize-avoid-bind,performance-*' \
-warningsaserrors='-*,modernize-use-emplace' \
-warningsaserrors='-*,modernize-use-emplace,performance-type-promotion-in-math-fn,performance-faster-string-find,performance-implicit-cast-in-loop' \
-no-command-on-stdout -quiet \
files 'src/.*'
RET=$?
Expand Down

0 comments on commit 077f231

Please sign in to comment.