diff options
author | Adam Moss <moss@lindenlab.com> | 2009-10-08 16:31:28 +0000 |
---|---|---|
committer | Adam Moss <moss@lindenlab.com> | 2009-10-08 16:31:28 +0000 |
commit | 50e3b3373bb12e4a19b4d85e148c514a8584e25d (patch) | |
tree | 16c048b349d46597c6b6c72090dde4569b3e7cb1 /indra/llmath/v3math.cpp | |
parent | ac63aaf7d8545c6701f9aa15bb7482e6c956be84 (diff) |
DEV-41080 - wriggle some method implementations out into header implementations, just enough so that llbboxlocal can be a unit test rather than an integration test. Slightly dubious about whether it's worth it.
Diffstat (limited to 'indra/llmath/v3math.cpp')
-rw-r--r-- | indra/llmath/v3math.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/indra/llmath/v3math.cpp b/indra/llmath/v3math.cpp index f392ac448b..63683ed496 100644 --- a/indra/llmath/v3math.cpp +++ b/indra/llmath/v3math.cpp @@ -185,14 +185,6 @@ void LLVector3::snap(S32 sig_digits) mV[VZ] = snap_to_sig_figs(mV[VZ], sig_digits); } - -std::ostream& operator<<(std::ostream& s, const LLVector3 &a) -{ - s << "{ " << a.mV[VX] << ", " << a.mV[VY] << ", " << a.mV[VZ] << " }"; - return s; -} - - const LLVector3& LLVector3::rotVec(const LLMatrix3 &mat) { *this = *this * mat; |