[PATCH] D16987: [clang-tidy] Correct IncorrectRoundings namespace.
Haojian Wu via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 8 07:58:49 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL260105: [clang-tidy] Correct IncorrectRoundings namespace. (authored by hokein).
Changed prior to commit:
http://reviews.llvm.org/D16987?vs=47199&id=47202#toc
Repository:
rL LLVM
http://reviews.llvm.org/D16987
Files:
clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.cpp
clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.h
Index: clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.h
===================================================================
--- clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.h
+++ clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.h
@@ -14,6 +14,7 @@
namespace clang {
namespace tidy {
+namespace misc {
/// \brief Checks the usage of patterns known to produce incorrect rounding.
/// Programmers often use
@@ -31,8 +32,8 @@
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
};
+} // namespace misc
} // namespace tidy
} // namespace clang
-
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_INCORRECTROUNDINGS_H_
Index: clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.cpp
===================================================================
--- clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.cpp
+++ clang-tools-extra/trunk/clang-tidy/misc/IncorrectRoundings.cpp
@@ -36,6 +36,7 @@
namespace clang {
namespace tidy {
+namespace misc {
void IncorrectRoundings::registerMatchers(MatchFinder *MatchFinder) {
// Match a floating literal with value 0.5.
auto FloatHalf = floatLiteral(floatHalf());
@@ -70,5 +71,6 @@
"consider using lround (#include <cmath>) instead");
}
+} // namespace misc
} // namespace tidy
} // namespace clang
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16987.47202.patch
Type: text/x-patch
Size: 1351 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160208/39cb9393/attachment.bin>
More information about the cfe-commits
mailing list