aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llstring.h
diff options
context:
space:
mode:
authorChris Tuchs2011-05-08 03:06:23 -0700
committerChris Tuchs2011-05-08 03:06:23 -0700
commit7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7 (patch)
treefe9134ed7c34b81a39570d0988b7147f153bd9bb /linden/indra/llcommon/llstring.h
parentWindows build change I am sure of (diff)
downloadmeta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.zip
meta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.tar.gz
meta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.tar.bz2
meta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.tar.xz
Windows build changes, maybe only needed for vc2005. Mostly snprintf -> ll_snprintf, namespace hacks confused vc2005
Diffstat (limited to 'linden/indra/llcommon/llstring.h')
-rw-r--r--linden/indra/llcommon/llstring.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llcommon/llstring.h b/linden/indra/llcommon/llstring.h
index 1717479..881ba83 100644
--- a/linden/indra/llcommon/llstring.h
+++ b/linden/indra/llcommon/llstring.h
@@ -483,12 +483,12 @@ LL_COMMON_API std::string utf8str_removeCRLF(const std::string& utf8str);
483 */ 483 */
484 484
485// Deal with the differeneces on Windows 485// Deal with the differeneces on Windows
486namespace snprintf_hack 486//namespace snprintf_hack
487{ 487//{
488 LL_COMMON_API int snprintf(char *str, size_t size, const char *format, ...); 488 LL_COMMON_API int ll_snprintf(char *str, size_t size, const char *format, ...);
489} 489//}
490 490
491using snprintf_hack::snprintf; 491//using snprintf_hack::snprintf;
492 492
493/** 493/**
494 * @brief Convert a wide string to std::string 494 * @brief Convert a wide string to std::string