[libcxx] r274204 - Fix unreferenced parameter warning. Patch from STL at microsoft.com

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 29 21:22:58 PDT 2016


Author: ericwf
Date: Wed Jun 29 23:22:58 2016
New Revision: 274204

URL: http://llvm.org/viewvc/llvm-project?rev=274204&view=rev
Log:
Fix unreferenced parameter warning. Patch from STL at microsoft.com

Modified:
    libcxx/trunk/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp

Modified: libcxx/trunk/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp?rev=274204&r1=274203&r2=274204&view=diff
==============================================================================
--- libcxx/trunk/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp (original)
+++ libcxx/trunk/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp Wed Jun 29 23:22:58 2016
@@ -17,7 +17,7 @@
 #include <string>
 #include <strstream>
 
-int main(int, char const **argv) {
+int main() {
   std::ostrstream oss;
   std::string s;
 




More information about the cfe-commits mailing list