summaryrefslogtreecommitdiff
path: root/indra/llcommon/StackWalker.h
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2018-10-25 11:09:57 -0400
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 16:12:46 -0400
commitdaeeab36eb2684e74f978cb083a2e6535370896d (patch)
tree2e2339cc5f50573e26b2c8d1f6ee780a83180f16 /indra/llcommon/StackWalker.h
parent25a658440dd6f66d64cc146a09ff0725d355bf5c (diff)
DRTVWR-476: Eliminate unnecessary typedefs from struct, enum decls.
With VS 2017, these produced fatal warnings.
Diffstat (limited to 'indra/llcommon/StackWalker.h')
-rw-r--r--indra/llcommon/StackWalker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/StackWalker.h b/indra/llcommon/StackWalker.h
index 834f89c471..4634765d0b 100644
--- a/indra/llcommon/StackWalker.h
+++ b/indra/llcommon/StackWalker.h
@@ -148,7 +148,7 @@ protected:
CHAR loadedImageName[STACKWALK_MAX_NAMELEN];
} CallstackEntry;
- typedef enum CallstackEntryType {firstEntry, nextEntry, lastEntry};
+ enum CallstackEntryType {firstEntry, nextEntry, lastEntry};
virtual void OnSymInit(LPCSTR szSearchPath, DWORD symOptions, LPCSTR szUserName);
virtual void OnLoadModule(LPCSTR img, LPCSTR mod, DWORD64 baseAddr, DWORD size, DWORD result, LPCSTR symType, LPCSTR pdbName, ULONGLONG fileVersion);