aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/ld-library.h
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-10-25 16:49:23 +0200
committerPřemysl Eric Janouch <p@janouch.name>2021-10-25 18:06:50 +0200
commitbc8ceebef7530b767e9e454f3c5cd6e1749675bd (patch)
treeae63f86facb3bc0dd0223b570131bae5542fb716 /liblogdiag/ld-library.h
parentda0a5c43dc53a48a70f4f1a15bce081b87bbe85f (diff)
downloadlogdiag-bc8ceebef7530b767e9e454f3c5cd6e1749675bd.tar.gz
logdiag-bc8ceebef7530b767e9e454f3c5cd6e1749675bd.tar.xz
logdiag-bc8ceebef7530b767e9e454f3c5cd6e1749675bd.zip
Add clang-format configuration, clean up
Diffstat (limited to 'liblogdiag/ld-library.h')
-rw-r--r--liblogdiag/ld-library.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/liblogdiag/ld-library.h b/liblogdiag/ld-library.h
index 46bed68..e52001e 100644
--- a/liblogdiag/ld-library.h
+++ b/liblogdiag/ld-library.h
@@ -15,16 +15,15 @@ G_BEGIN_DECLS
#define LD_TYPE_LIBRARY (ld_library_get_type ())
-#define LD_LIBRARY(obj) (G_TYPE_CHECK_INSTANCE_CAST \
- ((obj), LD_TYPE_LIBRARY, LdLibrary))
-#define LD_LIBRARY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST \
- ((klass), LD_TYPE_LIBRARY, LdLibraryClass))
-#define LD_IS_LIBRARY(obj) (G_TYPE_CHECK_INSTANCE_TYPE \
- ((obj), LD_TYPE_LIBRARY))
-#define LD_IS_LIBRARY_CLASS(klass) (G_TYPE_CHECK_INSTANCE_TYPE \
- ((klass), LD_TYPE_LIBRARY))
-#define LD_LIBRARY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS \
- ((obj), LD_LIBRARY, LdLibraryClass))
+#define LD_LIBRARY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LD_TYPE_LIBRARY, LdLibrary))
+#define LD_LIBRARY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), LD_TYPE_LIBRARY, LdLibraryClass))
+#define LD_IS_LIBRARY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LD_TYPE_LIBRARY))
+#define LD_IS_LIBRARY_CLASS(klass) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((klass), LD_TYPE_LIBRARY))
+#define LD_LIBRARY_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), LD_LIBRARY, LdLibraryClass))
typedef struct _LdLibrary LdLibrary;
typedef struct _LdLibraryPrivate LdLibraryPrivate;
@@ -66,4 +65,3 @@ LdCategory *ld_library_get_root (LdLibrary *self);
G_END_DECLS
#endif /* ! __LD_LIBRARY_H__ */
-