[polly] r329302 - Remove namespace comment at end of class. NFC.
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 5 08:32:07 PDT 2018
Author: meinersbur
Date: Thu Apr 5 08:32:06 2018
New Revision: 329302
URL: http://llvm.org/viewvc/llvm-project?rev=329302&view=rev
Log:
Remove namespace comment at end of class. NFC.
The
}; // namespace polly
comment was put at the closing brace of the FunctionToScopPassAdaptor class.
Since no namespace ends here, the comment is misplaced.
Reported-by: Lukas Böhm <lukas.boehm93 at gmail.com>
Modified:
polly/trunk/include/polly/ScopPass.h
Modified: polly/trunk/include/polly/ScopPass.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopPass.h?rev=329302&r1=329301&r2=329302&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopPass.h (original)
+++ polly/trunk/include/polly/ScopPass.h Thu Apr 5 08:32:06 2018
@@ -261,7 +261,7 @@ public:
private:
ScopPassT Pass;
-}; // namespace polly
+};
template <typename ScopPassT>
FunctionToScopPassAdaptor<ScopPassT>
More information about the llvm-commits
mailing list