mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
bad signature
# Conflicts: # CppCoreGuidelines.md
This commit is contained in:
parent
005e546d63
commit
165c61e7ce
|
@ -11452,12 +11452,12 @@ Defining "small amount" precisely is impossible.
|
|||
##### Example
|
||||
|
||||
string modify1(string);
|
||||
void modify2(shared_ptr<string);
|
||||
void modify2(shared_ptr<string>);
|
||||
|
||||
void fct(string& s)
|
||||
{
|
||||
auto res = async(modify1,string);
|
||||
async(modify2,&s);
|
||||
auto res = async(modify1, s);
|
||||
async(modify2, &s);
|
||||
}
|
||||
|
||||
The call of `modify1` involves copying two `string` values; the call of `modify2` does not.
|
||||
|
|
Loading…
Reference in New Issue
Block a user