parent_class testcase name warning fixes for PHP

This commit is contained in:
William S Fulton 2015-07-05 09:29:47 +01:00
parent 81f0050135
commit af5906f915
1 changed files with 2 additions and 2 deletions

View File

@ -6,11 +6,11 @@
%inline %{
struct parent {
struct parent_class {
std::string pvar;
};
struct child : public parent {
struct child : public parent_class {
std::string cvar;
};