diff --git a/clang/include/clang/Driver/Distro.h b/clang/include/clang/Driver/Distro.h index 1ebc682d8414e2..2b5ec9ab8eea55 100644 --- a/clang/include/clang/Driver/Distro.h +++ b/clang/include/clang/Driver/Distro.h @@ -114,9 +114,7 @@ class Distro { return DistroVal == Fedora || (DistroVal >= RHEL5 && DistroVal <= RHEL7); } - bool IsOpenSUSE() const { - return DistroVal == OpenSUSE; - } + bool IsOpenSUSE() const { return DistroVal == OpenSUSE; } bool IsDebian() const { return DistroVal >= DebianLenny && DistroVal <= DebianBullseye; @@ -126,13 +124,9 @@ class Distro { return DistroVal >= UbuntuHardy && DistroVal <= UbuntuGroovy; } - bool IsAlpineLinux() const { - return DistroVal == AlpineLinux; - } + bool IsAlpineLinux() const { return DistroVal == AlpineLinux; } - bool IsGentoo() const { - return DistroVal == Gentoo; - } + bool IsGentoo() const { return DistroVal == Gentoo; } /// @} };