@@ -613,7 +613,7 @@ namespace jsoncons {
613613 // long_string_storage
614614 struct long_string_storage
615615 {
616- using heap_string_factory_type = jsoncons::heap_string_factory<char_type,null_type,Allocator>;
616+ using heap_string_factory_type = jsoncons::heap:: heap_string_factory<char_type,null_type,Allocator>;
617617 using pointer = typename heap_string_factory_type::pointer;
618618
619619 uint8_t storage_kind_:4 ;
@@ -662,7 +662,7 @@ namespace jsoncons {
662662 // byte_string_storage
663663 struct byte_string_storage
664664 {
665- using heap_string_factory_type = jsoncons::heap_string_factory<uint8_t ,uint64_t ,Allocator>;
665+ using heap_string_factory_type = jsoncons::heap:: heap_string_factory<uint8_t ,uint64_t ,Allocator>;
666666 using pointer = typename heap_string_factory_type::pointer;
667667
668668 uint8_t storage_kind_:4 ;
@@ -927,14 +927,14 @@ namespace jsoncons {
927927
928928 typename long_string_storage::pointer create_long_string (const allocator_type& alloc, const char_type* data, std::size_t length)
929929 {
930- using heap_string_factory_type = jsoncons::heap_string_factory<char_type,null_type,Allocator>;
930+ using heap_string_factory_type = jsoncons::heap:: heap_string_factory<char_type,null_type,Allocator>;
931931 return heap_string_factory_type::create (data, length, null_type (), alloc);
932932 }
933933
934934 typename byte_string_storage::pointer create_byte_string (const allocator_type& alloc, const uint8_t * data, std::size_t length,
935935 uint64_t ext_tag)
936936 {
937- using heap_string_factory_type = jsoncons::heap_string_factory<uint8_t ,uint64_t ,Allocator>;
937+ using heap_string_factory_type = jsoncons::heap:: heap_string_factory<uint8_t ,uint64_t ,Allocator>;
938938 return heap_string_factory_type::create (data, length, ext_tag, alloc);
939939 }
940940
0 commit comments