target_ops::to_stratum -> target_ops::stratum() virtual method
[deliverable/binutils-gdb.git] / gdb / make-target-delegates
index 28b49a4e8f250782e872889fd1c289da6f1d2bdc..bc16c886cdb4cc34d1625127ed38e3d117f4b58b 100755 (executable)
@@ -390,10 +390,10 @@ sub print_class($) {
 
     print "struct " . $name . " : public target_ops\n";
     print "{\n";
-    print "  $name ();\n";
-    print "\n";
     print "  const target_info &info () const override;\n";
     print "\n";
+    print "  strata stratum () const override;\n";
+    print "\n";
 
     for $name (@delegators) {
        my $return_type = $return_types{$name};
This page took 0.024053 seconds and 4 git commands to generate.