diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2017-10-25 14:23:27 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2017-10-25 14:23:27 +0000 |
commit | de828bad7ea0d6bf29ecbb7ba7bd780200dada7c (patch) | |
tree | e8d52a69507cbbcb9fe54a86429b6a3a0d05cbf6 | |
parent | f8e9ffa56f26bd64057913708cb3ee96508bd799 (diff) | |
download | bcm5719-llvm-de828bad7ea0d6bf29ecbb7ba7bd780200dada7c.tar.gz bcm5719-llvm-de828bad7ea0d6bf29ecbb7ba7bd780200dada7c.zip |
Also update IsUbuntu() with Ubuntu Bionic
Follow up of r316577
llvm-svn: 316578
-rw-r--r-- | clang/include/clang/Driver/Distro.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Driver/Distro.h b/clang/include/clang/Driver/Distro.h index 6574fbca381..f079ceb73ec 100644 --- a/clang/include/clang/Driver/Distro.h +++ b/clang/include/clang/Driver/Distro.h @@ -112,7 +112,7 @@ public: } bool IsUbuntu() const { - return DistroVal >= UbuntuHardy && DistroVal <= UbuntuArtful; + return DistroVal >= UbuntuHardy && DistroVal <= UbuntuBionic; } /// @} |