File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ class Distro {
81
81
UbuntuNoble,
82
82
UbuntuOracular,
83
83
UbuntuPlucky,
84
+ UbuntuQuesting,
84
85
UnknownDistro
85
86
};
86
87
@@ -132,7 +133,7 @@ class Distro {
132
133
}
133
134
134
135
bool IsUbuntu () const {
135
- return DistroVal >= UbuntuHardy && DistroVal <= UbuntuPlucky ;
136
+ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuQuesting ;
136
137
}
137
138
138
139
bool IsAlpineLinux () const { return DistroVal == AlpineLinux; }
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) {
96
96
.Case (" noble" , Distro::UbuntuNoble)
97
97
.Case (" oracular" , Distro::UbuntuOracular)
98
98
.Case (" plucky" , Distro::UbuntuPlucky)
99
+ .Case (" questing" , Distro::UbuntuQuesting)
99
100
.Default (Distro::UnknownDistro);
100
101
return Version;
101
102
}
You can’t perform that action at this time.
0 commit comments