| Index: src/version.h
|
| diff --git a/src/version.h b/src/version.h
|
| index 20d9c71fe76661168b5e510a32f0bd3e25fb1f62..3395d7f4fe5589ff2afee64c0f7c353bb414e05d 100644
|
| --- a/src/version.h
|
| +++ b/src/version.h
|
| @@ -18,7 +18,6 @@
|
| static int GetMinor() { return minor_; }
|
| static int GetBuild() { return build_; }
|
| static int GetPatch() { return patch_; }
|
| - static const char* GetEmbedder() { return embedder_; }
|
| static bool IsCandidate() { return candidate_; }
|
| static uint32_t Hash() {
|
| return static_cast<uint32_t>(
|
| @@ -39,15 +38,13 @@
|
| static int minor_;
|
| static int build_;
|
| static int patch_;
|
| - static const char* embedder_;
|
| static bool candidate_;
|
| static const char* soname_;
|
| static const char* version_string_;
|
|
|
| // In test-version.cc.
|
| friend void SetVersion(int major, int minor, int build, int patch,
|
| - const char* embedder, bool candidate,
|
| - const char* soname);
|
| + bool candidate, const char* soname);
|
| };
|
|
|
| } // namespace internal
|
|
|