diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-10-04 08:45:00 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:47:13 -0400 |
commit | 16b768370b8587f63231f9bbc06ab48b58a4f15e (patch) | |
tree | 4aa6da69efd0f756ed87aae4d452cf38145de73b /indra/llcommon/StackWalker.cpp | |
parent | 54bc5ee9e1b76b2aabd4407ebd5760862e337700 (diff) |
DRTVWR-476: Fix Windows line endings
Diffstat (limited to 'indra/llcommon/StackWalker.cpp')
-rw-r--r-- | indra/llcommon/StackWalker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/StackWalker.cpp b/indra/llcommon/StackWalker.cpp index 7a7230db4b..56defc6465 100644 --- a/indra/llcommon/StackWalker.cpp +++ b/indra/llcommon/StackWalker.cpp @@ -98,7 +98,7 @@ // If VC7 and later, then use the shipped 'dbghelp.h'-file #pragma pack(push,8) #if _MSC_VER >= 1300 -#pragma warning (push)
+#pragma warning (push) #pragma warning (disable:4091) // a microsoft header has warnings. Very nice. #include <dbghelp.h> #pragma warning (pop) @@ -660,7 +660,7 @@ private: pGMI = (tGMI) GetProcAddress( hPsapi, "GetModuleInformation" ); if ( (pEPM == NULL) || (pGMFNE == NULL) || (pGMBN == NULL) || (pGMI == NULL) ) { - // we couldnīt find all functions + // we couldn't find all functions FreeLibrary(hPsapi); return FALSE; } |