Skip to content

Commit

Permalink
Merge pull request #321 from beached/v3
Browse files Browse the repository at this point in the history
BUGFIX: Missing Assignment
  • Loading branch information
beached authored Jul 23, 2022
2 parents 5f01192 + 6ed6236 commit 450b0b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
cmake_minimum_required( VERSION 3.14 )

project( "daw-json-link"
VERSION "3.0.1"
VERSION "3.0.3"
DESCRIPTION "Static JSON parsing in C++"
HOMEPAGE_URL "https://github.com/beached/daw_json_link"
LANGUAGES C CXX )
Expand Down
2 changes: 1 addition & 1 deletion extern/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ include( FetchContent )
FetchContent_Declare(
daw_header_libraries
GIT_REPOSITORY https://github.com/beached/header_libraries.git
GIT_TAG v2.65.0
GIT_TAG v2.68.1
)

FetchContent_Declare(
Expand Down
2 changes: 1 addition & 1 deletion include/daw/json/impl/to_daw_json_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -1539,7 +1539,7 @@ namespace daw::json {
if( ( whole_dig < -4 ) | ( whole_dig > 6 ) ) {
char buff[50]{ };
char *ptr = buff;
daw::jkj::dragonbox::to_chars_detail::to_chars( dec, ptr, digits );
ptr = daw::jkj::dragonbox::to_chars_detail::to_chars( dec, ptr, digits );
out_it.copy_buffer( buff, ptr );
return out_it;
}
Expand Down

0 comments on commit 450b0b9

Please sign in to comment.