Merge pull request #1100 from breyed/patch-1

T.concept: Remove comment unnecessary in good example
This commit is contained in:
Andrew Pardoe 2017-12-11 11:08:46 -08:00 committed by GitHub
commit 6ac3ac940f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16288,7 +16288,7 @@ The ability to specify a meaningful semantics is a defining characteristic of a
&& has_multiply<T>
&& has_divide<T>;
template<Number N> auto algo(const N& a, const N& b) // use two numbers
template<Number N> auto algo(const N& a, const N& b)
{
// ...
return a + b;