diff options
author | Lars Næsbye Christensen <lars@naesbye.dk> | 2024-02-09 23:16:24 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-12 23:17:22 +0200 |
commit | 5666681f85bc179f5abe3bbcbd87d294031549be (patch) | |
tree | 7a1a8a4649334e84d1d8eea903d6f647b0972299 /indra/llmath/llvolume.h | |
parent | 2b31dad40026d8078ea30d0da0656a4078d0f5b2 (diff) |
llmath: BOOL (int) to real bool
Diffstat (limited to 'indra/llmath/llvolume.h')
-rw-r--r-- | indra/llmath/llvolume.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llmath/llvolume.h b/indra/llmath/llvolume.h index afed98ff36..9048118243 100644 --- a/indra/llmath/llvolume.h +++ b/indra/llmath/llvolume.h @@ -687,9 +687,9 @@ class LLProfile public: LLProfile() - : mOpen(FALSE), - mConcave(FALSE), - mDirty(TRUE), + : mOpen(false), + mConcave(false), + mDirty(true), mTotalOut(0), mTotal(2) { @@ -779,9 +779,9 @@ public: public: LLPath() - : mOpen(FALSE), + : mOpen(false), mTotal(0), - mDirty(TRUE), + mDirty(true), mStep(1) { } |