diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmath/lluuid.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/llmath/lluuid.cpp b/linden/indra/llmath/lluuid.cpp index b943fd9..78dc8e6 100644 --- a/linden/indra/llmath/lluuid.cpp +++ b/linden/indra/llmath/lluuid.cpp | |||
@@ -3,6 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (c) 2000-2007, Linden Research, Inc. | 4 | * Copyright (c) 2000-2007, Linden Research, Inc. |
5 | * | 5 | * |
6 | * Second Life Viewer Source Code | ||
6 | * The source code in this file ("Source Code") is provided by Linden Lab | 7 | * The source code in this file ("Source Code") is provided by Linden Lab |
7 | * to you under the terms of the GNU General Public License, version 2.0 | 8 | * to you under the terms of the GNU General Public License, version 2.0 |
8 | * ("GPL"), unless you have obtained a separate licensing agreement | 9 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -174,6 +175,11 @@ void LLUUID::toCompressedString(char *out) const | |||
174 | out[UUID_BYTES] = '\0'; | 175 | out[UUID_BYTES] = '\0'; |
175 | } | 176 | } |
176 | 177 | ||
178 | std::string LLUUID::getString() const | ||
179 | { | ||
180 | return asString(); | ||
181 | } | ||
182 | |||
177 | std::string LLUUID::asString() const | 183 | std::string LLUUID::asString() const |
178 | { | 184 | { |
179 | char str[UUID_STR_SIZE]; /* Flawfinder: ignore */ | 185 | char str[UUID_STR_SIZE]; /* Flawfinder: ignore */ |