mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
satisfy travis ci
This commit is contained in:
@@ -3139,8 +3139,8 @@ Sometimes you may forward a composite parameter piecewise, each subobject once o
|
|||||||
inline auto test(PairLike&&... pairlike)
|
inline auto test(PairLike&&... pairlike)
|
||||||
{
|
{
|
||||||
// ...
|
// ...
|
||||||
f1( some, args, and, forward<PairLike>(pairlike).first ); // forward .first
|
f1(some, args, and, forward<PairLike>(pairlike).first); // forward .first
|
||||||
f2( and, forward<PairLike>(pairlike).second, in, another, call ); // forward .second
|
f2(and, forward<PairLike>(pairlike).second, in, another, call); // forward .second
|
||||||
}
|
}
|
||||||
|
|
||||||
##### Enforcement
|
##### Enforcement
|
||||||
|
|||||||
@@ -564,6 +564,7 @@ Stroustrup94
|
|||||||
Stroustrup's
|
Stroustrup's
|
||||||
struct
|
struct
|
||||||
structs
|
structs
|
||||||
|
subobject
|
||||||
subobjects
|
subobjects
|
||||||
suboperations
|
suboperations
|
||||||
subsetting
|
subsetting
|
||||||
|
|||||||
Reference in New Issue
Block a user