diff options
author | Murray Cumming <murrayc@murrayc.com> | 2016-03-31 11:09:44 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2016-03-31 11:39:07 +0200 |
commit | fb9f840e18edaa54f6c51762b2b9aa67f6fcd85b (patch) | |
tree | a02950c0aba9e5d00d2e425975957a45bfcb6ef6 /glib/src/datetime.hg | |
parent | 9a72522d16457319c7bd9829b23127a770454edd (diff) | |
download | glibmm-fb9f840e18edaa54f6c51762b2b9aa67f6fcd85b.tar.gz |
C++11: .hg/.ccg files: Replace typedefs with using.
Diffstat (limited to 'glib/src/datetime.hg')
-rw-r--r-- | glib/src/datetime.hg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/src/datetime.hg b/glib/src/datetime.hg index 82bcd56f..023cca31 100644 --- a/glib/src/datetime.hg +++ b/glib/src/datetime.hg @@ -35,7 +35,7 @@ class TimeZone; /** A value representing an interval of time, in microseconds. As GTimeSpan, * its underlying type is gint64. */ -typedef GTimeSpan TimeSpan; +using TimeSpan = GTimeSpan; /** DateTime - A structure representing Date and Time. * DateTime is a structure that combines a Gregorian date and time into a |