Fix warnings about misleading indentation. (#19186)
commitbe9ced1a0f3d25c7acc3956998e5b7f5840446fa
authorJay Krell <jay.krell@cornell.edu>
Wed, 11 Mar 2020 09:11:39 +0000 (11 02:11 -0700)
committerGitHub <noreply@github.com>
Wed, 11 Mar 2020 09:11:39 +0000 (11 10:11 +0100)
treebd84c2b5ea584f42fe68ff9f75f05f888a4f2fb3
parentfe5078961f176689c26798ec3f42725f2bf0bed1
Fix warnings about misleading indentation. (#19186)

This is subtle and not actually misleading,
because it tends to be space tab or space tab, not wrong
number of tabs or significant wrong number of spaces.

/s/mono2/mono/metadata/class.c:4010:6: warning: misleading indentation;
      statement is not part of the previous 'if' [-Wmisleading-indentation]
                                 if (mono_class_implement_interface_slo...

/s/mono2/mono/metadata/class.c:4039:3: warning: misleading indentation;
      statement is not part of the previous 'if' [-Wmisleading-indentation]
        if (m_class_is_delegate (target) && mono_class_has_variant_gener...

/s/mono2/mono/mini/driver.c:1780:4: warning: misleading indentation; statement
      is not part of the previous 'if' [-Wmisleading-indentation]
                if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
mono/metadata/class.c
mono/mini/driver.c