diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 13:39:59 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 13:39:59 -0800 |
commit | 4421a51cfeb43b3be6de520acb9f94052fc7e2df (patch) | |
tree | a5561113df3ac75090a3c703dca7233ecbab59b7 /indra/llmessage | |
parent | e67d2bb5556adbccedc9e75443f7ac873c8d8259 (diff) |
CID-109
Checker: MISSING_BREAK
Function: operator <<(std::basic_ostream<char, std::char_traits<char>>&, const LLNameValue &)
File: /indra/llmessage/llnamevalue.cpp
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llnamevalue.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmessage/llnamevalue.cpp b/indra/llmessage/llnamevalue.cpp index 01e922eba2..43429b0ab3 100644 --- a/indra/llmessage/llnamevalue.cpp +++ b/indra/llmessage/llnamevalue.cpp @@ -963,6 +963,7 @@ std::ostream& operator<<(std::ostream& s, const LLNameValue &a) U64_to_str(*a.mNameValueReference.u64, u64_string, sizeof(u64_string)); s << u64_string; } + break; case NVT_VEC3: s << *(a.mNameValueReference.vec3); break; |