diff options
author | Max Kellermann <max@duempel.org> | 2015-08-25 12:52:13 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-08-25 12:52:13 +0200 |
commit | 48d7fedbc085bcefd4db1e41f14a5390b7e032c0 (patch) | |
tree | c8737058677a949031182937d1e9764e2b932c5b | |
parent | 75dff6445063d9b49cca126fd661c9abbd680977 (diff) | |
download | mpd-48d7fedbc085bcefd4db1e41f14a5390b7e032c0.tar.gz mpd-48d7fedbc085bcefd4db1e41f14a5390b7e032c0.tar.xz mpd-48d7fedbc085bcefd4db1e41f14a5390b7e032c0.zip |
thread/{Mutex,Cond}: remove obsolete comments
Diffstat (limited to '')
-rw-r--r-- | src/thread/Cond.hxx | 4 | ||||
-rw-r--r-- | src/thread/Mutex.hxx | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/thread/Cond.hxx b/src/thread/Cond.hxx index a05d1c67d..ed016d212 100644 --- a/src/thread/Cond.hxx +++ b/src/thread/Cond.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2014 Max Kellermann <max@duempel.org> + * Copyright (C) 2009-2015 Max Kellermann <max@duempel.org> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,8 +32,6 @@ #ifdef WIN32 -/* mingw-w64 4.6.3 lacks a std::cond implementation */ - #include "WindowsCond.hxx" class Cond : public WindowsCond {}; diff --git a/src/thread/Mutex.hxx b/src/thread/Mutex.hxx index c17538549..bc4deebdd 100644 --- a/src/thread/Mutex.hxx +++ b/src/thread/Mutex.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2014 Max Kellermann <max@duempel.org> + * Copyright (C) 2009-2015 Max Kellermann <max@duempel.org> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,8 +32,6 @@ #ifdef WIN32 -/* mingw-w64 4.6.3 lacks a std::mutex implementation */ - #include "CriticalSection.hxx" class Mutex : public CriticalSection {}; |