Skip to content

Commit 66c9d52

Browse files
committed
Clang format updates.
1 parent 01a3628 commit 66c9d52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/util/json.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class jsont
119119
{
120120
}
121121

122-
jsont(kindt _kind, std::string _value):kind(_kind), value(std::move(_value))
122+
jsont(kindt _kind, std::string _value) : kind(_kind), value(std::move(_value))
123123
{
124124
}
125125

@@ -184,8 +184,8 @@ class json_arrayt:public jsont
184184
class json_stringt:public jsont
185185
{
186186
public:
187-
explicit json_stringt(std::string _value):
188-
jsont(kindt::J_STRING, std::move(_value))
187+
explicit json_stringt(std::string _value)
188+
: jsont(kindt::J_STRING, std::move(_value))
189189
{
190190
}
191191

0 commit comments

Comments
 (0)