Skip to content

Commit 06363bc

Browse files
NN---barcharcraz
andauthored
Update Release/include/cpprest/json.h
Co-authored-by: Charlie Barto <[email protected]>
1 parent 5408f1d commit 06363bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Release/include/cpprest/json.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1248,8 +1248,8 @@ class number
12481248
number(unsigned value) : m_intval(value), m_type(unsigned_type) {}
12491249
number(long value) : m_intval(value), m_type(value < 0 ? signed_type : unsigned_type) {}
12501250
number(unsigned long value) : m_uintval(value), m_type(unsigned_type) {}
1251-
number(long long value) : m_intval(value), m_type(value < 0 ? signed_type : unsigned_type) { }
1252-
number(unsigned long long value) : m_uintval(value), m_type(unsigned_type) { }
1251+
number(long long value) : m_intval(value), m_type(value < 0 ? signed_type : unsigned_type) {}
1252+
number(unsigned long long value) : m_uintval(value), m_type(unsigned_type) {}
12531253

12541254
public:
12551255
/// <summary>

0 commit comments

Comments
 (0)