mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
MFH: 2021Q4 Security: https://vuxml.freebsd.org/freebsd/a7732806-0b2a-11ec-836b-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/47b571f2-157b-11ec-ae98-704d7b472482.html Security: https://vuxml.freebsd.org/freebsd/3551e106-1b17-11ec-a8a7-704d7b472482.html Security: https://vuxml.freebsd.org/freebsd/b6c875f1-1d76-11ec-ae80-704d7b472482.html Security: https://vuxml.freebsd.org/freebsd/777edbbe-2230-11ec-8869-704d7b472482.html Security: https://vuxml.freebsd.org/freebsd/7d3d94d3-2810-11ec-9c51-3065ec8fd3ec.html
15 lines
527 B
C++
15 lines
527 B
C++
--- tools/gn/src/gn/version.h.orig 2021-09-14 02:05:25 UTC
|
|
+++ tools/gn/src/gn/version.h
|
|
@@ -22,9 +22,9 @@ class Version {
|
|
|
|
static std::optional<Version> FromString(std::string s);
|
|
|
|
- int major() const { return major_; }
|
|
- int minor() const { return minor_; }
|
|
- int patch() const { return patch_; }
|
|
+ int gmajor() const { return major_; }
|
|
+ int gminor() const { return minor_; }
|
|
+ int gpatch() const { return patch_; }
|
|
|
|
bool operator==(const Version& other) const;
|
|
bool operator<(const Version& other) const;
|