From 23abf541cf70c1ce2c7b2a07eda21535cef923af Mon Sep 17 00:00:00 2001 From: Junekey Jeon <33922675+jk-jeon@users.noreply.github.com> Date: Wed, 28 Aug 2024 13:30:33 -0700 Subject: [PATCH] Replace ::memcpy by std::memcpy --- subproject/simple/simple_dragonbox_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subproject/simple/simple_dragonbox_test.cpp b/subproject/simple/simple_dragonbox_test.cpp index f5e633e..4fea5c6 100644 --- a/subproject/simple/simple_dragonbox_test.cpp +++ b/subproject/simple/simple_dragonbox_test.cpp @@ -54,7 +54,7 @@ static bool test_simple_dragonbox(bool& success, Arg... arg) { Float x; static_assert(sizeof(br) == sizeof(x)); - ::memcpy(&x, &br, sizeof(br)); + std::memcpy(&x, &br, sizeof(br)); simple_dragonbox::to_chars(x, buffer1, arg...); reference_implementation(x, buffer2);