summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorAnchor <none@none>2019-05-23 21:56:15 -0700
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 18:40:44 -0400
commitff810f5cfb1ccc78ee7f1813116dcebbf0a4d709 (patch)
tree19d794e580d5dc693a7145ad58e26887bbbb7360 /indra/llcommon
parentca66cea70def0e8257c58c7676b0675d37b764f4 (diff)
[DRTVWR-476] - suppress dbghelp.h compiler warnings
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llstacktrace.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llcommon/llstacktrace.cpp b/indra/llcommon/llstacktrace.cpp
index bbf0e1e141..7084fe6f60 100644
--- a/indra/llcommon/llstacktrace.cpp
+++ b/indra/llcommon/llstacktrace.cpp
@@ -33,7 +33,10 @@
#include <sstream>
#include "llwin32headerslean.h"
-#include "Dbghelp.h"
+#pragma warning (push)
+#pragma warning (disable:4091) // a microsoft header has warnings. Very nice.
+#include <dbghelp.h>
+#pragma warning (pop)
typedef USHORT NTAPI RtlCaptureStackBackTrace_Function(
IN ULONG frames_to_skip,