OSDN Git Service

* exception.h: Remove DEBUG_EXCEPTION left over debugging ifdef.
authorcgf <cgf>
Thu, 10 Feb 2011 00:40:37 +0000 (00:40 +0000)
committercgf <cgf>
Thu, 10 Feb 2011 00:40:37 +0000 (00:40 +0000)
* dll_init.cc: Fix typo in comment.

winsup/cygwin/ChangeLog
winsup/cygwin/exception.h

index 8aa9c46..d645957 100644 (file)
@@ -1,3 +1,11 @@
+2011-02-09  Christopher Faylor  <me+cygwin@cgf.cx>
+
+       * exception.h: Remove DEBUG_EXCEPTION left over debugging ifdef.
+
+2011-02-08  Christopher Faylor  <me+cygwin@cgf.cx>
+
+       * dll_init.cc: Fix typo in comment.
+
 2011-02-07  Corinna Vinschen  <corinna@vinschen.de>
 
        * configure.in: Remove AC_ALLOCA test and test for __builtin_memset.
index 2171f8d..9f4a6c4 100644 (file)
@@ -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*/