aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmath
diff options
context:
space:
mode:
authorAleric Inglewood2010-09-30 02:17:43 +0200
committerMcCabe Maxsted2010-10-01 23:56:59 -0700
commitb5b6e556ed7e9fa6bdea2365e82765981ee9f28c (patch)
treef984604269dc1d49b271cbfefbe9dd2ce6bf13c7 /linden/indra/llmath
parentUpdate of doc/contributions.txt (diff)
downloadmeta-impy-b5b6e556ed7e9fa6bdea2365e82765981ee9f28c.zip
meta-impy-b5b6e556ed7e9fa6bdea2365e82765981ee9f28c.tar.gz
meta-impy-b5b6e556ed7e9fa6bdea2365e82765981ee9f28c.tar.bz2
meta-impy-b5b6e556ed7e9fa6bdea2365e82765981ee9f28c.tar.xz
SNOW-86: Dangerous macro leads to possible wrong code
See http://redmine.imprudenceviewer.org/issues/571 This patch appeared to already have been partially applied. I added more semi-colons after all llendl (and LLENDL) macros, and wrapped the lllog ... llendl construct into do { ... } while(0) as is usual for macros that mimic a single statement. The patch was double checked with regular expression greps and a compile.
Diffstat (limited to 'linden/indra/llmath')
-rw-r--r--linden/indra/llmath/llvolume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llmath/llvolume.cpp b/linden/indra/llmath/llvolume.cpp
index 4c94a52..b9b9e0b 100644
--- a/linden/indra/llmath/llvolume.cpp
+++ b/linden/indra/llmath/llvolume.cpp
@@ -4268,7 +4268,7 @@ LLFaceID LLVolume::generateFaceMask()
4268 } 4268 }
4269 break; 4269 break;
4270 default: 4270 default:
4271 llerrs << "Unknown profile!" << llendl 4271 llerrs << "Unknown profile!" << llendl;
4272 break; 4272 break;
4273 } 4273 }
4274 4274