From 2b312420aadfc3f0e0ff24bd95574ab9f81b7f24 Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Mon, 2 Mar 2015 12:25:03 +0000 Subject: [clang-tidy] Refactor: Move misc clang-tidy checks to namespace clang::tidy::misc clang-tidy checks are organized into modules. This refactoring moves the misc module checks into the namespace clang::tidy::misc http://reviews.llvm.org/D7996 Patch by Richard Thomson! llvm-svn: 230950 --- clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp') diff --git a/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp index 2e1fbbabb63..a42b2e5660c 100644 --- a/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp +++ b/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp @@ -6,6 +6,8 @@ namespace clang { namespace tidy { namespace test { +using misc::ArgumentCommentCheck; + TEST(ArgumentCommentCheckTest, CorrectComments) { EXPECT_NO_CHANGES(ArgumentCommentCheck, "void f(int x, int y); void g() { f(/*x=*/0, /*y=*/0); }"); -- cgit v1.2.3