aaron.ballman added a comment.

In https://reviews.llvm.org/D22346#580242, @falho wrote:

> removed semicolon, and replaced it with a comma that only appears in .cpp 
> diagnostics


The semicolon was the correct punctuator to use, but thank you for moving it 
into the cpp message.

> test cases corrected according to this
> 
> removed junk .swo file

Thanks!



================
Comment at: clang-tidy/cert/LimitedRandomnessCheck.cpp:30
+  if (getLangOpts().CPlusPlus) {
+    msg = ", use C++11 random library instead";
+  }
----------------
Switch the "," to ";", and remove the curly braces.


https://reviews.llvm.org/D22346



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to