]> gcc.gnu.org Git - gcc.git/commitdiff
* gjavah.c (print_c_decl): Indentation fix.
authorTom Tromey <tromey@redhat.com>
Mon, 14 Apr 2003 04:42:21 +0000 (04:42 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 14 Apr 2003 04:42:21 +0000 (04:42 +0000)
From-SVN: r65562

gcc/java/ChangeLog
gcc/java/gjavah.c

index 4ee59ee672669c796f9c021ad7d92fd66187c7a5..342974960718ce8808532840497b110be07ad2e3 100644 (file)
@@ -1,3 +1,7 @@
+2003-04-13  Tom Tromey  <tromey@redhat.com>
+
+       * gjavah.c (print_c_decl): Indentation fix.
+
 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
 
        * class.c (make_field_value, make_method_value, get_dispatch_table)
index 51cfe7cffbc5a46244fe594b98472cc6588186b9..24c3933a05d07345598c7a70a579fbd2a61a36e4 100644 (file)
@@ -1402,12 +1402,12 @@ print_c_decl (FILE* stream, JCF* jcf, int name_index, int signature_index,
         because the "new" C++ ABI changed the alignemnt of non-POD
         classes.  gcj, however, still uses the "old" alignment.  */
       if (is_first_data_member && ! (flags & ACC_STATIC) && ! is_method)
-      {
-       is_first_data_member = 0;
-       print_cxx_classname (out, " __attribute__((aligned(__alignof__( ",
-                            jcf, jcf->super_class, 1);
-       fputs (" )))) ", stream);
-      }
+       {
+         is_first_data_member = 0;
+         print_cxx_classname (out, " __attribute__((aligned(__alignof__( ",
+                              jcf, jcf->super_class, 1);
+         fputs (" )))) ", stream);
+       }
 
       /* Now print the name of the thing.  */
       if (need_space)
This page took 0.079828 seconds and 5 git commands to generate.