summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-02-26 22:44:05 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-02-26 22:44:05 +0100
commitf2cc4ebb113c48ad0aba46c1f67d4e8f65a69330 (patch)
tree35589cf6820949921a01ee0fefce77ff81ed5dfc /tests
parent084a26aee4ee4c87e5b0bf1fb4eba0522a4f9596 (diff)
downloadglibmm-f2cc4ebb113c48ad0aba46c1f67d4e8f65a69330.tar.gz
Re-run clang-format on some files.
I need to make a subsequent commit to fix the now-unaligned trailing comments.
Diffstat (limited to 'tests')
-rw-r--r--tests/glibmm_interface_move/main.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/glibmm_interface_move/main.cc b/tests/glibmm_interface_move/main.cc
index 45b81de4..99dbd584 100644
--- a/tests/glibmm_interface_move/main.cc
+++ b/tests/glibmm_interface_move/main.cc
@@ -26,15 +26,15 @@ test_Iface_get_type(void)
{
const GTypeInfo info = {
sizeof(TestIface), // class_size
- test_Iface_init, // base_init
- nullptr, // base_finalize
- nullptr, // class_init
- nullptr, // class_finalize
- nullptr, // class_data
- 0, // instance_size
- 0, // n_preallocs
- nullptr, // instance_init
- nullptr // value_table
+ test_Iface_init, // base_init
+ nullptr, // base_finalize
+ nullptr, // class_init
+ nullptr, // class_finalize
+ nullptr, // class_data
+ 0, // instance_size
+ 0, // n_preallocs
+ nullptr, // instance_init
+ nullptr // value_table
};
type = g_type_register_static(G_TYPE_INTERFACE, "TestIface", &info, GTypeFlags(0));