Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Generator::~Generator()

/////////////////////////////////////////////////
bool Generator::Generate(const FileDescriptor *_file,
const string &/*_parameter*/,
const std::string &/*_parameter*/,
OutputDirectory *_generatorContext,
std::string * /*_error*/) const
{
Expand Down
4 changes: 2 additions & 2 deletions src/Generator.hh
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ class Generator : public CodeGenerator
/// \param[in] _generatorContext Output directory.
/// \param[in] _error Unused string value
public: virtual bool Generate(const FileDescriptor *_file,
const string &_parameter,
const std::string &_parameter,
OutputDirectory *_generatorContext,
string *_error) const;
std::string *_error) const;

// private: GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Generator);
};
Expand Down