Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Release/include/cpprest/json.h
Co-authored-by: Charlie Barto <[email protected]>
  • Loading branch information
NN--- and Charlie Barto authored Mar 10, 2022
commit 06363bc78325e9541dd9fa2a6eab291d3f3c8596
4 changes: 2 additions & 2 deletions Release/include/cpprest/json.h
Original file line number Diff line number Diff line change
Expand Up @@ -1248,8 +1248,8 @@ class number
number(unsigned value) : m_intval(value), m_type(unsigned_type) {}
number(long value) : m_intval(value), m_type(value < 0 ? signed_type : unsigned_type) {}
number(unsigned long value) : m_uintval(value), m_type(unsigned_type) {}
number(long long value) : m_intval(value), m_type(value < 0 ? signed_type : unsigned_type) { }
number(unsigned long long value) : m_uintval(value), m_type(unsigned_type) { }
number(long long value) : m_intval(value), m_type(value < 0 ? signed_type : unsigned_type) {}
number(unsigned long long value) : m_uintval(value), m_type(unsigned_type) {}

public:
/// <summary>
Expand Down