aboutsummaryrefslogtreecommitdiff
path: root/articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specia...
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-02-21 21:53:35 +0100
committerAdrian Kummerlaender2016-02-21 21:54:49 +0100
commitaa224dcf77fbbcb699bba283d45b9c7465af052b (patch)
tree7f26d60f6d5a080b216630659fdf97220ebe50ea /articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md
parent756c0688a240e5bd2600eea79cec1f57640f6430 (diff)
downloadblog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.gz
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.bz2
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.lz
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.xz
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.zst
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.zip
Fix possessive form of _library_
Diffstat (limited to 'articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md')
-rw-r--r--articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md b/articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md
index 3df1aaa..98740c9 100644
--- a/articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md
+++ b/articles/2014-01-05_disabling_methods_in_implicitly_instantiated_class_template_specializations_in_cpp.md
@@ -19,7 +19,7 @@ inline typename std::enable_if<
~~~
{: .language-cpp}
-As we can see I am relying on the standard libraries `std::enable_if` template to enable the method only if the _Helper_ template argument equals the type _UndefinedEndian_. One may wonder why I am supplying the `std::enable_if` template with the argument _Helper_ instead of directly specifying the class template argument _Endianess_. This was needed because of the following paragraph of the ISO C++ standard:
+As we can see I am relying on the standard library's `std::enable_if` template to enable the method only if the _Helper_ template argument equals the type _UndefinedEndian_. One may wonder why I am supplying the `std::enable_if` template with the argument _Helper_ instead of directly specifying the class template argument _Endianess_. This was needed because of the following paragraph of the ISO C++ standard:
> The implicit instantiation of a class template specialization causes the implicit instantiation of the declarations, but not of the definitions or default arguments, of the class member functions, [...]
> ([ISO C++ Standard draft, N3337](http://www.open-std.org/jtc1/sc22/wg21/), p. 346)