mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
devel/ignition-msgs: Fix build with protobuf 3.20.0+
This commit is contained in:
parent
da92b2a125
commit
270125f6a1
25
devel/ignition-msgs/files/patch-protobuf
Normal file
25
devel/ignition-msgs/files/patch-protobuf
Normal file
@ -0,0 +1,25 @@
|
||||
--- src/Generator.cc.orig 2018-11-02 21:28:13 UTC
|
||||
+++ src/Generator.cc
|
||||
@@ -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
|
||||
{
|
||||
--- src/Generator.hh.orig 2018-11-02 21:28:13 UTC
|
||||
+++ src/Generator.hh
|
||||
@@ -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);
|
||||
};
|
Loading…
Reference in New Issue
Block a user