diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2018-09-30 05:54:47 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2018-09-30 06:08:11 -0400 |
commit | 2382dd07fa6ff49638b146a523e9d2e93cf69ceb (patch) | |
tree | 867521dee408e5aecd4e3fdf295f5f60636d7250 /util | |
parent | 9caa432d0c5c09c8151cfce1e2cc184fbdd89594 (diff) |
Minor
Diffstat (limited to 'util')
-rw-r--r-- | util/options.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/options.hh b/util/options.hh index 0c929a22..1a26697d 100644 --- a/util/options.hh +++ b/util/options.hh @@ -56,12 +56,12 @@ void fail (hb_bool_t suggest_help, const char *format, ...) G_GNUC_NORETURN G_GN struct option_group_t { - virtual ~option_group_t () {} + virtual ~option_group_t (void) {} virtual void add_options (struct option_parser_t *parser) = 0; - virtual void pre_parse (GError **error G_GNUC_UNUSED) {}; - virtual void post_parse (GError **error G_GNUC_UNUSED) {}; + virtual void pre_parse (GError **error G_GNUC_UNUSED) {} + virtual void post_parse (GError **error G_GNUC_UNUSED) {} }; |