]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix testsuite
authorCaroline Tice <cmtice@google.com>
Wed, 20 Feb 2019 16:07:19 +0000 (08:07 -0800)
committerCaroline Tice <ctice@gcc.gnu.org>
Wed, 20 Feb 2019 16:07:19 +0000 (08:07 -0800)
2019-02-19  Caroline Tice <cmtice@google.com>

Fix testsuite
* testsuite/libvtv.cc/const_vtable.cc (main): Fix function signature.

From-SVN: r269041

libvtv/ChangeLog
libvtv/testsuite/libvtv.cc/const_vtable.cc

index 60409dafdb0deb0672c7e0e17352fa89889ba49c..96e661893008fbb444290a08924af7d7b34c0255 100644 (file)
@@ -1,3 +1,8 @@
+2019-02-19  Caroline Tice <cmtice@google.com>
+
+       Fix testsuite
+       * testsuite/libvtv.cc/const_vtable.cc (main): Fix function signature.
+
 2019-01-01  Jakub Jelinek  <jakub@redhat.com>
 
        Update copyright years.
index 3229f00830824527ba4763206a0e6edffeec81f4..d26fcbcf13ef5485d406dd7c3165d140e820c02d 100644 (file)
@@ -28,7 +28,7 @@ struct D : B, C {
   ~D(); 
 }; 
 extern "C" int printf(const char *,...); 
-main(
+int main(int argc, char**argv
 {
   try {
     D *d = new D;