aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorPaolo Carlini <paolo.carlini@oracle.com>2009-10-30 21:31:23 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2009-10-30 21:31:23 +0000
commita20c8540dbe58f146f5af87c644b0df6635eb03d (patch)
treee59629f9a61a62dbbd8c5fd84150e3374ad4b900 /libstdc++-v3
parent7664c548e69ae4989d979fd1e44ced46be746e70 (diff)
downloadgcc-a20c8540dbe58f146f5af87c644b0df6635eb03d.zip
gcc-a20c8540dbe58f146f5af87c644b0df6635eb03d.tar.gz
gcc-a20c8540dbe58f146f5af87c644b0df6635eb03d.tar.bz2
random.h: Fix typo in static_assert text.
2009-10-30 Paolo Carlini <paolo.carlini@oracle.com> * include/bits/random.h: Fix typo in static_assert text. From-SVN: r153767
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/bits/random.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 600a93e..ad203dd 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2009-10-30 Paolo Carlini <paolo.carlini@oracle.com>
+ * include/bits/random.h: Fix typo in static_assert text.
+
+2009-10-30 Paolo Carlini <paolo.carlini@oracle.com>
+
PR libstdc++/41759
* include/bits/random.h: Tweak a bit the text of some static_asserts.
diff --git a/libstdc++-v3/include/bits/random.h b/libstdc++-v3/include/bits/random.h
index 12f484b..ab661e9 100644
--- a/libstdc++-v3/include/bits/random.h
+++ b/libstdc++-v3/include/bits/random.h
@@ -1094,7 +1094,7 @@ namespace std
template<typename _RandomNumberEngine, size_t __k>
class shuffle_order_engine
{
- static_assert(1u <= __k, "template argument substituing "
+ static_assert(1u <= __k, "template argument substituting "
"__k out of bound");
public: