summaryrefslogtreecommitdiff
path: root/winsup/cygwin/threaded_queue.h
diff options
context:
space:
mode:
authorscottc <scottc>2002-09-22 10:54:38 +0000
committerscottc <scottc>2002-09-22 10:54:38 +0000
commit16f27e171eb05eecea93b998d9bae5935bdc916a (patch)
treeba347e20b317e54de04fa85b5a1ff696405743e7 /winsup/cygwin/threaded_queue.h
parent66de14fff8d6aa6fb902b8e6f30c0ea3fcf42b91 (diff)
downloadgdb-cygwin_daemon.tar.gz
GNUify non-GNU formatted functions calls throughout.cygwin_daemoncvs/cygwin_daemon
Diffstat (limited to 'winsup/cygwin/threaded_queue.h')
-rwxr-xr-xwinsup/cygwin/threaded_queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/threaded_queue.h b/winsup/cygwin/threaded_queue.h
index a28f0459269..5b6fddc425d 100755
--- a/winsup/cygwin/threaded_queue.h
+++ b/winsup/cygwin/threaded_queue.h
@@ -22,8 +22,8 @@ class queue_request
public:
queue_request *_next;
- queue_request() : _next (NULL) {}
- virtual ~queue_request();
+ queue_request () : _next (NULL) {}
+ virtual ~queue_request ();
virtual void process () = 0;
};