diff options
author | Murray Cumming <murrayc@murrayc.com> | 2013-06-27 09:55:52 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2015-07-09 23:26:29 +0200 |
commit | e0a8d05f0457d157a392303ced2b4237b228901b (patch) | |
tree | 196116e4cb882cdc7f3f313e6684f2f6497a546a | |
parent | 2cad48817914213f41fd7b85cac0f650b0f9d7ce (diff) | |
download | glibmm-e0a8d05f0457d157a392303ced2b4237b228901b.tar.gz |
C++11: examples: No need for > > now.
-rw-r--r-- | examples/dbus/client_bus_listnames.cc | 2 | ||||
-rw-r--r-- | examples/network/resolver.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/dbus/client_bus_listnames.cc b/examples/dbus/client_bus_listnames.cc index 0a49d739..3c51e12c 100644 --- a/examples/dbus/client_bus_listnames.cc +++ b/examples/dbus/client_bus_listnames.cc @@ -52,7 +52,7 @@ void on_dbus_proxy_available(Glib::RefPtr<Gio::AsyncResult>& result) // Now extract the single item in the variant container which is the // array of strings (the names). - Glib::Variant< std::vector<Glib::ustring> > names_variant; + Glib::Variant< std::vector<Glib::ustring>> names_variant; result.get_child(names_variant); // Get the vector of strings. diff --git a/examples/network/resolver.cc b/examples/network/resolver.cc index ca630d9d..4fdf0cfa 100644 --- a/examples/network/resolver.cc +++ b/examples/network/resolver.cc @@ -91,7 +91,7 @@ print_resolved_name (const Glib::ustring& phys, static void print_resolved_addresses (const Glib::ustring& name, - const std::list<Glib::RefPtr<Gio::InetAddress> >& addresses) + const std::list<Glib::RefPtr<Gio::InetAddress>>& addresses) { G_LOCK (response); std::cout << Glib::ustring::compose ("Name: %1\n", name); |