Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2011-02-09 18:40:37 +0300
committerChristopher Faylor <me@cgf.cx>2011-02-09 18:40:37 +0300
commit7a5f322c35b2af993c803beb6f575732b143b12b (patch)
tree024594cacbaee47c7dad227a68f57c09ad5a08bf /winsup/cygwin/exception.h
parent38286e47f0f42a4cfb6971b2c5d0e70591bb2a34 (diff)
* exception.h: Remove DEBUG_EXCEPTION left over debugging ifdef.
* dll_init.cc: Fix typo in comment.
Diffstat (limited to 'winsup/cygwin/exception.h')
-rw-r--r--winsup/cygwin/exception.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/winsup/cygwin/exception.h b/winsup/cygwin/exception.h
index 2171f8df0..9f4a6c45c 100644
--- a/winsup/cygwin/exception.h
+++ b/winsup/cygwin/exception.h
@@ -1,6 +1,6 @@
/* exception.h
- Copyright 2010 Red Hat, Inc.
+ Copyright 2010, 2011 Red Hat, Inc.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
@@ -19,10 +19,6 @@ class exception
exception_list *save;
static int handle (EXCEPTION_RECORD *, exception_list *, CONTEXT *, void *);
public:
-#ifdef DEBUG_EXCEPTION
- exception ();
- ~exception ();
-#else
exception () __attribute__ ((always_inline))
{
save = _except_list;
@@ -31,7 +27,6 @@ public:
_except_list = &el;
};
~exception () __attribute__ ((always_inline)) { _except_list = save; }
-#endif
};
#endif /*_EXCEPTION_H*/