diff options
author | Anchor <none@none> | 2019-05-15 03:57:10 -0600 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:39:20 -0400 |
commit | b09770946a8ae3396517c6796d1bff2a1707de26 (patch) | |
tree | c25b98ecc31ad442285fae538e723178fc2636fd /indra/newview | |
parent | 476721e48ae6db46fcad743973763b6211430d30 (diff) |
[DRTVWR-476] - disable dbghelp.h warnings
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llwindebug.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llwindebug.h b/indra/newview/llwindebug.h index 7e5818ba1c..05f245b311 100644 --- a/indra/newview/llwindebug.h +++ b/indra/newview/llwindebug.h @@ -29,7 +29,11 @@ #include "stdtypes.h" #include "llwin32headerslean.h" +
+#pragma warning (push)
+#pragma warning (disable:4091) // a microsoft header has warnings. Very nice. #include <dbghelp.h> +#pragma warning (pop) class LLWinDebug: public LLSingleton<LLWinDebug> |