eolian_mono: add missing tabs to apply indentation
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Mon, 13 Jan 2020 11:43:22 +0000 (20:43 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Mon, 13 Jan 2020 21:11:02 +0000 (06:11 +0900)
Missing tabs are added to apply indentation.

src/bin/eolian_mono/eolian/mono/events.hh

index 2b85c7e..2acfcbb 100644 (file)
@@ -229,7 +229,7 @@ struct pack_event_info_and_call_visitor
       return as_generator(
                           indent.inc() << "Contract.Requires(e != null, nameof(e));\n"
                           << indent.inc() << "IntPtr info = e.arg.NativeHandle;\n"
-                          << "CallNativeEventCallback(" << library_name << ", \"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
+                          << indent.inc() << "CallNativeEventCallback(" << library_name << ", \"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
                           ).generate(sink, attributes::unused, *context);
    }
    bool operator()(attributes::complex_type_def const& type) const
@@ -241,7 +241,7 @@ struct pack_event_info_and_call_visitor
       return as_generator(
                           indent.inc() << "Contract.Requires(e != null, nameof(e));\n"
                           << indent.inc() << "IntPtr info = e.arg.Handle;\n"
-                          << "CallNativeEventCallback(" << library_name << ", \"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
+                          << indent.inc() << "CallNativeEventCallback(" << library_name << ", \"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
                           ).generate(sink, attributes::unused, *context);
    }
 };