diff options
Diffstat (limited to 'polly/lib/Analysis/ScopDetectionDiagnostic.cpp')
-rw-r--r-- | polly/lib/Analysis/ScopDetectionDiagnostic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Analysis/ScopDetectionDiagnostic.cpp b/polly/lib/Analysis/ScopDetectionDiagnostic.cpp index 78b3d9e35e1..e74073cecba 100644 --- a/polly/lib/Analysis/ScopDetectionDiagnostic.cpp +++ b/polly/lib/Analysis/ScopDetectionDiagnostic.cpp @@ -51,7 +51,7 @@ BADSCOP_STAT(Alias, "Found base address alias"); BADSCOP_STAT(Other, "Others"); namespace polly { -/// @brief Small string conversion via raw_string_stream. +/// Small string conversion via raw_string_stream. template <typename T> std::string operator+(Twine LHS, const T &RHS) { std::string Buf; raw_string_ostream fmt(Buf); @@ -63,7 +63,7 @@ template <typename T> std::string operator+(Twine LHS, const T &RHS) { } // namespace polly namespace llvm { -// @brief Lexicographic order on (line, col) of our debug locations. +// Lexicographic order on (line, col) of our debug locations. static bool operator<(const llvm::DebugLoc &LHS, const llvm::DebugLoc &RHS) { return LHS.getLine() < RHS.getLine() || (LHS.getLine() == RHS.getLine() && LHS.getCol() < RHS.getCol()); |