diff options
Diffstat (limited to 'linden/indra/test/lluri_tut.cpp')
-rw-r--r-- | linden/indra/test/lluri_tut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/test/lluri_tut.cpp b/linden/indra/test/lluri_tut.cpp index c13a830..786df92 100644 --- a/linden/indra/test/lluri_tut.cpp +++ b/linden/indra/test/lluri_tut.cpp | |||
@@ -254,8 +254,8 @@ namespace tut | |||
254 | "http:%2F%2F10.0.1.4:12032%2Fagent%2Fgod%2Fagent-id%2Fmap%2Flayer%2F%3Fresume=http:%2F%2Fstation3.ll.com:12032%2Fagent%2F203ad6df-b522-491d-ba48-4e24eb57aeff%2Fsend-postcard"); | 254 | "http:%2F%2F10.0.1.4:12032%2Fagent%2Fgod%2Fagent-id%2Fmap%2Flayer%2F%3Fresume=http:%2F%2Fstation3.ll.com:12032%2Fagent%2F203ad6df-b522-491d-ba48-4e24eb57aeff%2Fsend-postcard"); |
255 | // French cedilla (C with squiggle, like in the word Francais) is UTF-8 C3 A7 | 255 | // French cedilla (C with squiggle, like in the word Francais) is UTF-8 C3 A7 |
256 | std::string cedilla; | 256 | std::string cedilla; |
257 | cedilla.push_back( 0xC3 ); | 257 | cedilla.push_back( (char)0xC3 ); |
258 | cedilla.push_back( 0xA7 ); | 258 | cedilla.push_back( (char)0xA7 ); |
259 | ensure_equals("escape UTF8", LLURI::escape( cedilla, unreserved), "%C3%A7"); | 259 | ensure_equals("escape UTF8", LLURI::escape( cedilla, unreserved), "%C3%A7"); |
260 | } | 260 | } |
261 | 261 | ||