Skip to content

Commit

Permalink
retain ABI compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Bateman authored and Rob Bateman committed Mar 4, 2019
1 parent bed58cd commit 9c78111
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mayautils/AL/maya/utils/FileTranslatorOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ std::string stringify(const char* str)
}

//----------------------------------------------------------------------------------------------------------------------
void FileTranslatorOptions::initParser(OptionsParser& optionParser)
MStatus FileTranslatorOptions::initParser(OptionsParser& optionParser)
{
// first generate a collection of methods to create, edit, and query each separate option. For each exporter/importer
// option, we will generate three methods:
Expand Down Expand Up @@ -468,6 +468,7 @@ void FileTranslatorOptions::initParser(OptionsParser& optionParser)
}
}
}
return MS::kSuccess;
}

//----------------------------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion mayautils/AL/maya/utils/FileTranslatorOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ class FileTranslatorOptions
/// \param optionParser the option parser in which the options for the file translator have been specified
/// \return MS::kSuccess if ok
AL_MAYA_UTILS_PUBLIC
void initParser(OptionsParser& optionParser);
MStatus initParser(OptionsParser& optionParser);

protected:
#ifndef AL_GENERATING_DOCS
Expand Down

0 comments on commit 9c78111

Please sign in to comment.