aboutsummaryrefslogtreecommitdiff
path: root/gdb/osdata.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/osdata.h')
-rw-r--r--gdb/osdata.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/gdb/osdata.h b/gdb/osdata.h
index bb3c004..84034e3 100644
--- a/gdb/osdata.h
+++ b/gdb/osdata.h
@@ -25,8 +25,10 @@
struct osdata_column
{
osdata_column (std::string &&name_, std::string &&value_)
- : name (std::move (name_)), value (std::move (value_))
- {}
+ : name (std::move (name_)),
+ value (std::move (value_))
+ {
+ }
std::string name;
std::string value;
@@ -40,8 +42,9 @@ struct osdata_item
struct osdata
{
osdata (std::string &&type_)
- : type (std::move (type_))
- {}
+ : type (std::move (type_))
+ {
+ }
std::string type;
std::vector<osdata_item> items;