Skip to content

Commit

Permalink
Merge pull request #4431 from tacaswell/fix_cxx_clang_warning
Browse files Browse the repository at this point in the history
FIX : fix mis-matched new/delete in CXX
  • Loading branch information
tacaswell committed May 15, 2015
2 parents a5b48e7 + eabfd72 commit ec6c107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/CXX/Python2/ExtensionType.hxx
Expand Up @@ -125,7 +125,7 @@ namespace Py

~ExtensionClassMethodsTable()
{
delete m_methods_table;
delete[] m_methods_table;
}

// check that all methods added are unique
Expand Down

0 comments on commit ec6c107

Please sign in to comment.