summaryrefslogtreecommitdiff
path: root/gio/src/mount.hg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-31 11:09:44 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-03-31 11:39:07 +0200
commitfb9f840e18edaa54f6c51762b2b9aa67f6fcd85b (patch)
treea02950c0aba9e5d00d2e425975957a45bfcb6ef6 /gio/src/mount.hg
parent9a72522d16457319c7bd9829b23127a770454edd (diff)
downloadglibmm-fb9f840e18edaa54f6c51762b2b9aa67f6fcd85b.tar.gz
C++11: .hg/.ccg files: Replace typedefs with using.
Diffstat (limited to 'gio/src/mount.hg')
-rw-r--r--gio/src/mount.hg6
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/src/mount.hg b/gio/src/mount.hg
index 07ae84e8..2e91bea3 100644
--- a/gio/src/mount.hg
+++ b/gio/src/mount.hg
@@ -256,9 +256,9 @@ namespace Container_Helpers
template <>
struct TypeTraits< Glib::RefPtr<Gio::Mount> >
{
- typedef Glib::RefPtr<Gio::Mount> CppType;
- typedef GMount* CType;
- typedef GMount* CTypeNonConst;
+ using CppType = Glib::RefPtr<Gio::Mount>;
+ using CType = GMount*;
+ using CTypeNonConst = GMount*;
static CType to_c_type (const CppType& item)
{ return Glib::unwrap (item); }