diff options
author | Andrew A. de Laix <alain@lindenlab.com> | 2010-12-17 10:53:02 -0800 |
---|---|---|
committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-12-17 10:53:02 -0800 |
commit | b707048fdfbc9bbcc3efa5d21c1e5142527ad267 (patch) | |
tree | 2782c6610e12460dcf23b80a8ef895ab72bd84bc /indra/viewer_components/updater | |
parent | 9148e168575e25922f466055f9a49202f4a33af3 (diff) |
fix windows build (suppress warning from lexical_cast)
Diffstat (limited to 'indra/viewer_components/updater')
-rw-r--r-- | indra/viewer_components/updater/llupdateinstaller.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/viewer_components/updater/llupdateinstaller.cpp b/indra/viewer_components/updater/llupdateinstaller.cpp index fe1e493e82..d4fbc82523 100644 --- a/indra/viewer_components/updater/llupdateinstaller.cpp +++ b/indra/viewer_components/updater/llupdateinstaller.cpp @@ -23,6 +23,9 @@ * $/LicenseInfo$ */ +#pragma warning(disable: 4702) // disable 'unreachable code' so we can use lexical_cast (really!). + + #include "linden_common.h" #include <apr_file_io.h> #include <boost/lexical_cast.hpp> |