diff options
| author | Andrew A. de Laix <alain@lindenlab.com> | 2010-12-17 12:07:09 -0800 | 
|---|---|---|
| committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-12-17 12:07:09 -0800 | 
| commit | 67a543aa6cc50d8a0b46a1b4e9dd82cdd676cdc1 (patch) | |
| tree | f04426dcf98e69772efa61f52d47d0f49c0b4755 /indra/viewer_components | |
| parent | 049815bd528daaa7d9f09043304c4dc6f4a030f0 (diff) | |
ich bin stupid; this should actually fix the windows build.
Diffstat (limited to 'indra/viewer_components')
| -rw-r--r-- | indra/viewer_components/updater/llupdateinstaller.cpp | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/indra/viewer_components/updater/llupdateinstaller.cpp b/indra/viewer_components/updater/llupdateinstaller.cpp index 0928cb64e9..d3347d330a 100644 --- a/indra/viewer_components/updater/llupdateinstaller.cpp +++ b/indra/viewer_components/updater/llupdateinstaller.cpp @@ -23,10 +23,6 @@   * $/LicenseInfo$   */ -#if defined(LL_WINDOWS) -#pragma warning(disable: 4702)      // disable 'unreachable code' so we can use lexical_cast (really!). -#endif -  #include "linden_common.h"  #include <apr_file_io.h>  #include <boost/lexical_cast.hpp> @@ -36,6 +32,11 @@  #include "lldir.h" +#if defined(LL_WINDOWS) +#pragma warning(disable: 4702)      // disable 'unreachable code' so we can use lexical_cast (really!). +#endif + +  namespace {  	class RelocateError {}; | 
