|
Boost-Commit : |
From: Lawrence_at_[hidden]
Date: 2007-10-29 19:14:31
Author: crowl
Date: 2007-10-29 19:14:30 EDT (Mon, 29 Oct 2007)
New Revision: 40576
URL: http://svn.boost.org/trac/boost/changeset/40576
Log:
Normalize <i> in comments to <em>.
Text files modified:
sandbox/committee/LWG/thread_library.html | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
Modified: sandbox/committee/LWG/thread_library.html
==============================================================================
--- sandbox/committee/LWG/thread_library.html (original)
+++ sandbox/committee/LWG/thread_library.html 2007-10-29 19:14:30 EDT (Mon, 29 Oct 2007)
@@ -123,9 +123,9 @@
<pre><code>
namespace std {
...
- <i>// Hash function specializations</i>
+ // <em>Hash function specializations</em>
...
- <ins>struct hash<std::thread::id>; //should not be in this header file ?</ins>
+ <ins>struct hash<std::thread::id>; // <b>should not be in this header file ?</b></ins>
}
</code></pre>
</blockquote>
@@ -290,11 +290,11 @@
class thread
{
public:
- // <i>types:</i>
+ // <em>types:</em>
class id;
- typedef <i>implementation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implementation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
- // <i>construct/copy/destroy:</i>
+ // <em>construct/copy/destroy:</em>
thread();
template <class F, class ...Args> explicit thread(F f, Args&&... args);
~thread();
@@ -303,15 +303,15 @@
thread& operator=(const thread&) = delete;
thread& operator=(thread&&);
- // <i>members:</i>
+ // <em>members:</em>
void swap(thread&&);
bool joinable() const;
void join();
void detach();
id get_id() const;
- native_handle_type native_handle(); <i>// See [frontmatter]</i>
+ native_handle_type native_handle(); // <em>See [frontmatter]</em>
- // <i>static members:</i>
+ // <em>static members:</em>
static unsigned hardware_concurrency();
};
</code></pre>
@@ -1206,7 +1206,7 @@
bool try_lock();
void unlock();
- typedef <i>implemenation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implemenation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
native_handle_type native_handle(); <i> // See [frontmatter]</i>
};
@@ -1239,7 +1239,7 @@
bool try_lock();
void unlock();
- typedef <i>implemenation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implemenation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
native_handle_type native_handle(); <i> // See [frontmatter]</i>
};
@@ -1329,7 +1329,7 @@
bool timed_lock(const Duration& rel_time);
void unlock();
- typedef <i>implemenation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implemenation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
native_handle_type native_handle(); <i> // See [frontmatter]</i>
};
@@ -1364,7 +1364,7 @@
bool timed_lock(const Duration& rel_time);
void unlock();
- typedef <i>implemenation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implemenation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
native_handle_type native_handle(); <i> // See [frontmatter]</i>
};
@@ -2142,7 +2142,7 @@
template <class Predicate>
bool timed_wait(unique_lock<mutex>& lock, const system_time& abs_time, Predicate pred);
- typedef <i>implemenation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implemenation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
native_handle_type native_handle(); <i> // See [frontmatter]</i>
};
@@ -2468,7 +2468,7 @@
template <class Lock, class Predicate>
bool timed_wait(Lock& lock, const system_time& abs_time, Predicate pred);
- typedef <i>implemenation-defined</i> native_handle_type; <i>// See [frontmatter]</i>
+ typedef <i>implemenation-defined</i> native_handle_type; // <em>See [frontmatter]</em>
native_handle_type native_handle(); <i> // See [frontmatter]</i>
};
@@ -3388,7 +3388,7 @@
</dl>
<pre><code>
-<i>//sign inversion</i>
+// <em>sign inversion</em>
Duration operator-() const
</code></pre>
@@ -3405,7 +3405,7 @@
</dl>
<pre><code>
-<i>//arithmetic operations</i>
+// <em>arithmetic operations</em>
template<typename RhsDuration>
Duration operator- (const RhsDuration& d) const
</code></pre>
@@ -3783,7 +3783,7 @@
</dl>
<pre><code>
-<i>//conversions</i>
+// <em>conversions</em>
operator nanoseconds() const
</code></pre>
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