[libcxx-commits] [libcxx] r356493 - Fix fenv.pass.cpp signature for main

JF Bastien via libcxx-commits libcxx-commits at lists.llvm.org
Tue Mar 19 11:24:11 PDT 2019


Author: jfb
Date: Tue Mar 19 11:24:11 2019
New Revision: 356493

URL: http://llvm.org/viewvc/llvm-project?rev=356493&view=rev
Log:
Fix fenv.pass.cpp signature for main

And make main return.

Modified:
    libcxx/trunk/test/libcxx/depr/depr.c.headers/fenv.pass.cpp

Modified: libcxx/trunk/test/libcxx/depr/depr.c.headers/fenv.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/depr/depr.c.headers/fenv.pass.cpp?rev=356493&r1=356492&r2=356493&view=diff
==============================================================================
--- libcxx/trunk/test/libcxx/depr/depr.c.headers/fenv.pass.cpp (original)
+++ libcxx/trunk/test/libcxx/depr/depr.c.headers/fenv.pass.cpp Tue Mar 19 11:24:11 2019
@@ -14,6 +14,4 @@
 #error _LIBCPP_VERSION not defined
 #endif
 
-int main()
-{
-}
+int main(int, char**) { return 0; }




More information about the libcxx-commits mailing list