Skip to content
Snippets Groups Projects
Commit 4421a51c authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-109

Checker: MISSING_BREAK
Function: operator <<(std::basic_ostream<char, std::char_traits<char>>&, const LLNameValue &)
File: /indra/llmessage/llnamevalue.cpp
parent e67d2bb5
No related branches found
No related tags found
No related merge requests found
...@@ -963,6 +963,7 @@ std::ostream& operator<<(std::ostream& s, const LLNameValue &a) ...@@ -963,6 +963,7 @@ std::ostream& operator<<(std::ostream& s, const LLNameValue &a)
U64_to_str(*a.mNameValueReference.u64, u64_string, sizeof(u64_string)); U64_to_str(*a.mNameValueReference.u64, u64_string, sizeof(u64_string));
s << u64_string; s << u64_string;
} }
break;
case NVT_VEC3: case NVT_VEC3:
s << *(a.mNameValueReference.vec3); s << *(a.mNameValueReference.vec3);
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment