aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/threaded_queue.h
diff options
context:
space:
mode:
authorConrad Scott <conrad.scott@dsl.pipex.com>2002-09-22 10:54:38 +0000
committerConrad Scott <conrad.scott@dsl.pipex.com>2002-09-22 10:54:38 +0000
commitf70f96c67329f59d3718cb5dede413ff0fdbab3d (patch)
tree254acaf6a236c637134078bc79e9239dcae97e41 /winsup/cygwin/threaded_queue.h
parentbb1f9b213f7bb13118a6de360fc55b3f8a816b7f (diff)
downloadnewlib-cygwin_daemon.zip
newlib-cygwin_daemon.tar.gz
newlib-cygwin_daemon.tar.bz2
GNUify non-GNU formatted functions calls throughout.github/cygwin_daemoncygwin_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 a28f045..5b6fddc 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;
};