Fixed #4656 (New check: Detect pure virtual function calls)
C++11: move constructor
This commit is contained in:
parent
894a2435ae
commit
47360f1191
|
@ -42,6 +42,8 @@ namespace {
|
|||
return "constructor";
|
||||
case Function::eCopyConstructor:
|
||||
return "copy constructor";
|
||||
case Function::eMoveConstructor:
|
||||
return "move constructor";
|
||||
case Function::eDestructor:
|
||||
return "destructor";
|
||||
case Function::eFunction:
|
||||
|
|
Loading…
Reference in New Issue