Skip to content

Commit bc206ca

Browse files
author
herbert
committed
latest updated merged
1 parent 3141ad0 commit bc206ca

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

include/pthread/condition_variable.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ namespace pthread {
160160
#else
161161
void notify_one () noexcept;
162162
#endif
163-
164163

165164
/** signal all waiting threads
166165
* The pthread_cond_broadcast() call unblocks all threads currently blocked on the specified condition variable cond.

include/pthread/mutex.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
namespace pthread {
2121

22-
using namespace std ;
2322

2423
class condition_variable;
2524

@@ -81,7 +80,7 @@ namespace pthread {
8180
* @param message short description
8281
* @param pthread_errno error returned by the pthread function
8382
*/
84-
mutex_exception( const string message, const int pthread_errno = 0) ;
83+
mutex_exception( const std::string message, const int pthread_errno = 0) ;
8584

8685
};
8786

0 commit comments

Comments
 (0)