[clang-tidy] Buildbot failure fix for commit rGf5fd7486d6c0

Commit `rGf5fd7486d6c0` caused a buildbot failure because exceptions are
disabled by default on one of the buildbots. This patch forcibly enables
exceptions for the affected test.
This commit is contained in:
Adam Balogh 2020-08-31 16:29:01 +02:00
parent a9a6e62ddf
commit 22808d693e

View file

@ -1,4 +1,4 @@
// RUN: %check_clang_tidy %s cppcoreguidelines-prefer-member-initializer %t
// RUN: %check_clang_tidy %s cppcoreguidelines-prefer-member-initializer %t -- -- -fcxx-exceptions
class Simple1 {
int n;