summaryrefslogtreecommitdiff
path: root/gio/src/fileattributeinfo.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'gio/src/fileattributeinfo.ccg')
-rw-r--r--gio/src/fileattributeinfo.ccg13
1 files changed, 6 insertions, 7 deletions
diff --git a/gio/src/fileattributeinfo.ccg b/gio/src/fileattributeinfo.ccg
index d3e95977..9cf96757 100644
--- a/gio/src/fileattributeinfo.ccg
+++ b/gio/src/fileattributeinfo.ccg
@@ -23,8 +23,7 @@ namespace Gio
{
FileAttributeInfo::FileAttributeInfo(const GFileAttributeInfo* ginfo)
- :
- m_name(ginfo->name ? ginfo->name : ""),
+: m_name(ginfo->name ? ginfo->name : ""),
m_type(static_cast<FileAttributeType>(ginfo->type)),
m_flags(static_cast<FileAttributeInfoFlags>(ginfo->flags))
{
@@ -45,13 +44,14 @@ FileAttributeInfo::operator=(const FileAttributeInfo& other)
}
FileAttributeInfo::FileAttributeInfo(FileAttributeInfo&& other) noexcept
-: m_name(std::move(other.m_name)),
- m_type(std::move(other.m_type)),
- m_flags(std::move(other.m_flags))
+ : m_name(std::move(other.m_name)),
+ m_type(std::move(other.m_type)),
+ m_flags(std::move(other.m_flags))
{
}
-FileAttributeInfo& FileAttributeInfo::operator=(FileAttributeInfo&& other) noexcept
+FileAttributeInfo&
+FileAttributeInfo::operator=(FileAttributeInfo&& other) noexcept
{
m_name = std::move(other.m_name);
m_type = std::move(other.m_type);
@@ -83,4 +83,3 @@ FileAttributeInfo::get_flags() const
}
} // namespace Gio
-