diff options
| author | Steven Fuller <relnev@icculus.org> | 2008-05-18 21:32:34 -0700 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:37 +0200 |
| commit | c948a593912fef46e2cea6da9b0dd0c7c36054c7 (patch) | |
| tree | 270cb3dd7b3d5bbcd29d9dd8284f183e97a7aac8 /src/win95/list_tem.hpp | |
| parent | 02db356511621b7b9db3f0e05dcc92924d9eadde (diff) | |
Removed Watcom Compiler support.
Diffstat (limited to 'src/win95/list_tem.hpp')
| -rw-r--r-- | src/win95/list_tem.hpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/win95/list_tem.hpp b/src/win95/list_tem.hpp index 5f72558..bab4f30 100644 --- a/src/win95/list_tem.hpp +++ b/src/win95/list_tem.hpp @@ -100,24 +100,16 @@ struct List_Member_Base union { List_Member_Base<T> *prev; - #ifndef __WATCOMC__ List_Member<T> *prev_debug; // encourage the debugger to display the list members data - #endif // hopefully casting from base to derived class would not + // hopefully casting from base to derived class would not // cause the actual value of the ptr to change, so the debugger // will display the information correctly, and this union // won't cause any kind of performance hit - - //watcom doesn't appear to like this, unfortunately. - - - }; union { List_Member_Base<T> *next; - #ifndef __WATCOMC__ List_Member<T> *next_debug; - #endif }; virtual ~List_Member_Base() {} }; |
