Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions gobject/gvaluetypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -895,12 +895,11 @@ g_value_get_ulong (const GValue *value)
}

/**
* g_value_get_int64:
* g_value_set_int64:
* @value: a valid #GValue of type %G_TYPE_INT64
* @v_int64: 64bit integer value to be set
*
* Get the contents of a %G_TYPE_INT64 #GValue.
*
* Returns: 64bit integer contents of @value
* Set the contents of a %G_TYPE_INT64 #GValue to @v_int64.
*/
void
g_value_set_int64 (GValue *value,
Expand All @@ -912,11 +911,12 @@ g_value_set_int64 (GValue *value,
}

/**
* g_value_set_int64:
* g_value_get_int64:
* @value: a valid #GValue of type %G_TYPE_INT64
* @v_int64: 64bit integer value to be set
*
* Set the contents of a %G_TYPE_INT64 #GValue to @v_int64.
* Get the contents of a %G_TYPE_INT64 #GValue.
*
* Returns: 64bit integer contents of @value
*/
gint64
g_value_get_int64 (const GValue *value)
Expand Down