diff options
author | Nat@Hothead.lindenlab.com <Nat@Hothead.lindenlab.com> | 2009-07-02 14:48:09 -0400 |
---|---|---|
committer | Nat@Hothead.lindenlab.com <Nat@Hothead.lindenlab.com> | 2009-07-02 14:48:09 -0400 |
commit | 989b3dd280e712dfacf49f5099ab4178551c5707 (patch) | |
tree | 837ca5037fdc46e98258a0203a28b0483bba1ae9 /indra/newview | |
parent | 8b3cd39a45e288b8383a5e7953f68458637cb719 (diff) |
Fix disabling this-in-init-list warning
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index dcd37d85da..91fc95cf6f 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -30,12 +30,12 @@ * $/LicenseInfo$ */ -#if defined(LL_WINDOWS) +#include "llviewerprecompiledheaders.h" + +#if LL_WINDOWS #pragma warning (disable : 4355) // 'this' used in initializer list: yes, intentionally #endif -#include "llviewerprecompiledheaders.h" - // system library includes #include <stdio.h> #include <iostream> |