|
Boost-Commit : |
From: Lawrence_at_[hidden]
Date: 2007-12-07 22:16:58
Author: crowl
Date: 2007-12-07 22:16:58 EST (Fri, 07 Dec 2007)
New Revision: 41861
URL: http://svn.boost.org/trac/boost/changeset/41861
Log:
Wrap code lines longer than 80 columns.
Text files modified:
sandbox/committee/LWG/thread_library.html | 36 ++++++++++++++++++++++++------------
1 files changed, 24 insertions(+), 12 deletions(-)
Modified: sandbox/committee/LWG/thread_library.html
==============================================================================
--- sandbox/committee/LWG/thread_library.html (original)
+++ sandbox/committee/LWG/thread_library.html 2007-12-07 22:16:58 EST (Fri, 07 Dec 2007)
@@ -1221,9 +1221,12 @@
template <class Mutex> class lock_guard;
template <class Mutex> class unique_lock;
-template <class Mutex> void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
-template <class Mutex> void swap(unique_lock<Mutex>&& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
-template <class Mutex> void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>&& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>&& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>&& <var>y</var>);
template <class L1, class L2, class ...L3> int try_lock(L1&, L2&, L3&...);
template <class L1, class L2, class ...L3> void lock(L1&, L2&, L3&...);
@@ -1885,9 +1888,12 @@
bool owns; // for exposition only
};
-template <class Mutex> void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
-template <class Mutex> void swap(unique_lock<Mutex>&& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
-template <class Mutex> void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>&& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>&& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>&& <var>y</var>);
} // std
</code></pre>
@@ -2429,9 +2435,12 @@
</blockquote>
<pre><code>
-template <class Mutex> void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
-template <class Mutex> void swap(unique_lock<Mutex>&& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
-template <class Mutex> void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>&& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>&& <var>x</var>, unique_lock<Mutex>& <var>y</var>);
+template <class Mutex>
+ void swap(unique_lock<Mutex>& <var>x</var>, unique_lock<Mutex>&& <var>y</var>);
</code></pre>
<blockquote>
@@ -3010,7 +3019,8 @@
<pre><code>
template <class Predicate>
- bool timed_wait(unique_lock<mutex>& <var>lock</var>, const system_time& <var>abs_time</var>, Predicate <var>pred</var>);
+ bool timed_wait(unique_lock<mutex>& <var>lock</var>, const system_time& <var>abs_time</var>,
+ Predicate <var>pred</var>);
</code></pre>
<blockquote>
@@ -3049,7 +3059,8 @@
<pre><code>
template <class Duration, class Predicate>
- bool timed_wait(unique_lock<mutex>& <var>lock</var>, const Duration& <var>rel_time</var>, Predicate <var>pred</var>);
+ bool timed_wait(unique_lock<mutex>& <var>lock</var>, const Duration& <var>rel_time</var>,
+ Predicate <var>pred</var>);
</code></pre>
<blockquote>
@@ -3137,7 +3148,8 @@
template <class Lock, class Duration>
bool timed_wait(Lock& <var>lock</var>, const Duration& <var>rel_time</var>);
template <class Lock, class Predicate>
- bool timed_wait(Lock& <var>lock</var>, const system_time& <var>abs_time</var>, Predicate <var>pred</var>);
+ bool timed_wait(Lock& <var>lock</var>, const system_time& <var>abs_time</var>,
+ Predicate <var>pred</var>);
template <class Lock, class Duration, class Predicate>
bool timed_wait(Lock& <var>lock</var>, const Duration& <var>rel_time</var>, Predicate <var>pred</var>);
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk