Fixed #4656 (New check: Detect pure virtual function calls)

C++11: move constructor
This commit is contained in:
Frank Zingsheim 2013-04-08 19:37:08 +02:00
parent 894a2435ae
commit 47360f1191
1 changed files with 2 additions and 0 deletions

View File

@ -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: