summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-02-27 11:04:46 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-02-27 11:04:53 +0100
commit25b4a8d167555bd080160f0b1169cd54e5aaef37 (patch)
tree5b3f32b4adc40a911a3c2345abd70814a1cc1320 /examples
parente1eb5c1d651a8906074feda2d2a0ad103e838949 (diff)
downloadglibmm-25b4a8d167555bd080160f0b1169cd54e5aaef37.tar.gz
Rearrange some multiline comments.
Putting the comment before the code, instead of to the right, because clang-format can not (and could not) know which comments are meant to be aligned. I prefer this anyway.
Diffstat (limited to 'examples')
-rw-r--r--examples/options/main.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/options/main.cc b/examples/options/main.cc
index 8da855e3..4f8e5e36 100644
--- a/examples/options/main.cc
+++ b/examples/options/main.cc
@@ -69,8 +69,9 @@ ExampleOptionGroup::ExampleOptionGroup()
entry3.set_long_name("goo");
entry3.set_short_name('g');
entry3.set_description("The Goo");
- m_arg_goo = "default-goo-value"; // We can choose a default to be used if the user doesn't specify
+ // We can choose a default to be used if the user doesn't specify
// this option.
+ m_arg_goo = "default-goo-value";
add_entry(entry3, m_arg_goo);
Glib::OptionEntry entry4;