/src/jsoncons/include/jsoncons/basic_json.hpp
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright 2013-2025 Daniel Parker |
2 | | // Distributed under the Boost license, Version 1.0. |
3 | | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
4 | | |
5 | | // See https://github.com/danielaparker/jsoncons for latest version |
6 | | |
7 | | #ifndef JSONCONS_BASIC_JSON_HPP |
8 | | #define JSONCONS_BASIC_JSON_HPP |
9 | | |
10 | | #include <algorithm> // std::swap |
11 | | #include <cstdint> |
12 | | #include <cstring> |
13 | | #include <functional> |
14 | | #include <initializer_list> // std::initializer_list |
15 | | #include <istream> |
16 | | #include <istream> // std::basic_istream |
17 | | #include <limits> // std::numeric_limits |
18 | | #include <memory> // std::allocator |
19 | | #include <ostream> |
20 | | #include <stdexcept> |
21 | | #include <string> |
22 | | #include <system_error> |
23 | | #include <type_traits> // std::enable_if |
24 | | #include <typeinfo> |
25 | | #include <utility> // std::move |
26 | | #include <vector> |
27 | | |
28 | | #include <jsoncons/allocator_set.hpp> |
29 | | #include <jsoncons/config/compiler_support.hpp> |
30 | | #include <jsoncons/config/version.hpp> |
31 | | #include <jsoncons/conv_error.hpp> |
32 | | #include <jsoncons/conversion_result.hpp> |
33 | | #include <jsoncons/json_array.hpp> |
34 | | #include <jsoncons/json_decoder.hpp> |
35 | | #include <jsoncons/json_encoder.hpp> |
36 | | #include <jsoncons/json_error.hpp> |
37 | | #include <jsoncons/json_exception.hpp> |
38 | | #include <jsoncons/json_fwd.hpp> |
39 | | #include <jsoncons/json_object.hpp> |
40 | | #include <jsoncons/json_options.hpp> |
41 | | #include <jsoncons/json_reader.hpp> |
42 | | #include <jsoncons/json_type.hpp> |
43 | | #include <jsoncons/reflect/json_conv_traits.hpp> |
44 | | #include <jsoncons/pretty_print.hpp> |
45 | | #include <jsoncons/semantic_tag.hpp> |
46 | | #include <jsoncons/ser_util.hpp> |
47 | | #include <jsoncons/source.hpp> |
48 | | #include <jsoncons/utility/bigint.hpp> |
49 | | #include <jsoncons/utility/byte_string.hpp> |
50 | | #include <jsoncons/utility/heap_string.hpp> |
51 | | #include <jsoncons/utility/more_type_traits.hpp> |
52 | | #include <jsoncons/utility/unicode_traits.hpp> |
53 | | |
54 | | #if defined(JSONCONS_HAS_POLYMORPHIC_ALLOCATOR) |
55 | | #include <memory_resource> // std::poymorphic_allocator |
56 | | #endif |
57 | | |
58 | | namespace jsoncons { |
59 | | |
60 | | namespace ext_traits { |
61 | | |
62 | | template <typename Container> |
63 | | using |
64 | | container_array_iterator_type_t = decltype(Container::array_iterator_type); |
65 | | template <typename Container> |
66 | | using |
67 | | container_const_array_iterator_type_t = decltype(Container::const_array_iterator_type); |
68 | | template <typename Container> |
69 | | using |
70 | | container_object_iterator_type_t = decltype(Container::object_iterator_type); |
71 | | template <typename Container> |
72 | | using |
73 | | container_const_object_iterator_type_t = decltype(Container::const_object_iterator_type); |
74 | | |
75 | | namespace detail { |
76 | | |
77 | | template <typename T> |
78 | | using |
79 | | basic_json_t = basic_json<typename T::char_type,typename T::policy_type,typename T::allocator_type>; |
80 | | |
81 | | } // namespace detail |
82 | | |
83 | | template <typename T,typename Enable = void> |
84 | | struct is_basic_json : std::false_type {}; |
85 | | |
86 | | template <typename T> |
87 | | struct is_basic_json<T, |
88 | | typename std::enable_if<ext_traits::is_detected<detail::basic_json_t,typename std::decay<T>::type>::value>::type |
89 | | > : std::true_type {}; |
90 | | |
91 | | } // namespace ext_traits |
92 | | |
93 | | namespace detail { |
94 | | |
95 | | template <typename Iterator,typename Enable = void> |
96 | | class random_access_iterator_wrapper |
97 | | { |
98 | | }; |
99 | | |
100 | | template <typename Iterator> |
101 | | class random_access_iterator_wrapper<Iterator, |
102 | | typename std::enable_if<std::is_same<typename std::iterator_traits<Iterator>::iterator_category, |
103 | | std::random_access_iterator_tag>::value>::type> |
104 | | { |
105 | | Iterator it_; |
106 | | bool has_value_; |
107 | | |
108 | | template <typename Iter,typename Enable> |
109 | | friend class random_access_iterator_wrapper; |
110 | | public: |
111 | | using iterator_category = std::random_access_iterator_tag; |
112 | | |
113 | | using value_type = typename std::iterator_traits<Iterator>::value_type; |
114 | | using difference_type = typename std::iterator_traits<Iterator>::difference_type; |
115 | | using pointer = typename std::iterator_traits<Iterator>::pointer; |
116 | | using reference = typename std::iterator_traits<Iterator>::reference; |
117 | | |
118 | 0 | random_access_iterator_wrapper() : it_(), has_value_(false) |
119 | 0 | { |
120 | 0 | } |
121 | | |
122 | 66.3k | explicit random_access_iterator_wrapper(Iterator ptr) : it_(ptr), has_value_(true) |
123 | 66.3k | { |
124 | 66.3k | } |
125 | | |
126 | | random_access_iterator_wrapper(const random_access_iterator_wrapper&) = default; |
127 | | random_access_iterator_wrapper(random_access_iterator_wrapper&&) = default; |
128 | | random_access_iterator_wrapper& operator=(const random_access_iterator_wrapper&) = default; |
129 | | random_access_iterator_wrapper& operator=(random_access_iterator_wrapper&&) = default; |
130 | | |
131 | | template <typename Iter, |
132 | | typename=typename std::enable_if<!std::is_same<Iter,Iterator>::value && std::is_convertible<Iter,Iterator>::value>::type> |
133 | | random_access_iterator_wrapper(const random_access_iterator_wrapper<Iter>& other) |
134 | | : it_(other.it_), has_value_(other.has_value_) |
135 | | { |
136 | | } |
137 | | |
138 | | operator Iterator() const |
139 | | { |
140 | | return it_; |
141 | | } |
142 | | |
143 | | reference operator*() const |
144 | 4.95k | { |
145 | 4.95k | return *it_; |
146 | 4.95k | } jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator*() const Line | Count | Source | 144 | 4.95k | { | 145 | 4.95k | return *it_; | 146 | 4.95k | } |
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator*() const Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator*() const Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator*() const |
147 | | |
148 | | pointer operator->() const |
149 | | { |
150 | | return &(*it_); |
151 | | } |
152 | | |
153 | | random_access_iterator_wrapper& operator++() |
154 | 4.95k | { |
155 | 4.95k | ++it_; |
156 | 4.95k | return *this; |
157 | 4.95k | } jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator++() Line | Count | Source | 154 | 4.95k | { | 155 | 4.95k | ++it_; | 156 | 4.95k | return *this; | 157 | 4.95k | } |
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator++() Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator++() Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator++() |
158 | | |
159 | | random_access_iterator_wrapper operator++(int) |
160 | | { |
161 | | random_access_iterator_wrapper temp = *this; |
162 | | ++*this; |
163 | | return temp; |
164 | | } |
165 | | |
166 | | random_access_iterator_wrapper& operator--() |
167 | | { |
168 | | --it_; |
169 | | return *this; |
170 | | } |
171 | | |
172 | | random_access_iterator_wrapper operator--(int) |
173 | | { |
174 | | random_access_iterator_wrapper temp = *this; |
175 | | --*this; |
176 | | return temp; |
177 | | } |
178 | | |
179 | | random_access_iterator_wrapper& operator+=(const difference_type offset) |
180 | | { |
181 | | it_ += offset; |
182 | | return *this; |
183 | | } |
184 | | |
185 | | random_access_iterator_wrapper operator+(const difference_type offset) const |
186 | | { |
187 | | random_access_iterator_wrapper temp = *this; |
188 | | return temp += offset; |
189 | | } |
190 | | |
191 | | random_access_iterator_wrapper& operator-=(const difference_type offset) |
192 | | { |
193 | | return *this += -offset; |
194 | | } |
195 | | |
196 | | random_access_iterator_wrapper operator-(const difference_type offset) const |
197 | | { |
198 | | random_access_iterator_wrapper temp = *this; |
199 | | return temp -= offset; |
200 | | } |
201 | | |
202 | | difference_type operator-(const random_access_iterator_wrapper& rhs) const noexcept |
203 | | { |
204 | | return it_ - rhs.it_; |
205 | | } |
206 | | |
207 | | reference operator[](const difference_type offset) const noexcept |
208 | | { |
209 | | return *(*this + offset); |
210 | | } |
211 | | |
212 | | bool operator==(const random_access_iterator_wrapper& rhs) const noexcept |
213 | 38.1k | { |
214 | 38.1k | if (!has_value_ || !rhs.has_value_) |
215 | 0 | { |
216 | 0 | return has_value_ == rhs.has_value_ ? true : false; |
217 | 0 | } |
218 | 38.1k | else |
219 | 38.1k | { |
220 | 38.1k | return it_ == rhs.it_; |
221 | 38.1k | } |
222 | 38.1k | } jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const Line | Count | Source | 213 | 38.1k | { | 214 | 38.1k | if (!has_value_ || !rhs.has_value_) | 215 | 0 | { | 216 | 0 | return has_value_ == rhs.has_value_ ? true : false; | 217 | 0 | } | 218 | 38.1k | else | 219 | 38.1k | { | 220 | 38.1k | return it_ == rhs.it_; | 221 | 38.1k | } | 222 | 38.1k | } |
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const |
223 | | |
224 | | bool operator!=(const random_access_iterator_wrapper& rhs) const noexcept |
225 | 38.1k | { |
226 | 38.1k | return !(*this == rhs); |
227 | 38.1k | } jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const Line | Count | Source | 225 | 38.1k | { | 226 | 38.1k | return !(*this == rhs); | 227 | 38.1k | } |
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const |
228 | | |
229 | | bool operator<(const random_access_iterator_wrapper& rhs) const noexcept |
230 | | { |
231 | | if (!has_value_ || !rhs.has_value_) |
232 | | { |
233 | | return has_value_ == rhs.has_value_ ? false :(has_value_ ? false : true); |
234 | | } |
235 | | else |
236 | | { |
237 | | return it_ < rhs.it_; |
238 | | } |
239 | | } |
240 | | |
241 | | bool operator>(const random_access_iterator_wrapper& rhs) const noexcept |
242 | | { |
243 | | return rhs < *this; |
244 | | } |
245 | | |
246 | | bool operator<=(const random_access_iterator_wrapper& rhs) const noexcept |
247 | | { |
248 | | return !(rhs < *this); |
249 | | } |
250 | | |
251 | | bool operator>=(const random_access_iterator_wrapper& rhs) const noexcept |
252 | | { |
253 | | return !(*this < rhs); |
254 | | } |
255 | | |
256 | | inline |
257 | | friend random_access_iterator_wrapper<Iterator> operator+( |
258 | | difference_type offset, random_access_iterator_wrapper<Iterator> next) |
259 | | { |
260 | | return next += offset; |
261 | | } |
262 | | |
263 | | bool has_value() const |
264 | | { |
265 | | return has_value_; |
266 | | } |
267 | | }; |
268 | | } // namespace detail |
269 | | |
270 | | struct sorted_policy |
271 | | { |
272 | | template <typename KeyT,typename Json> |
273 | | using object = sorted_json_object<KeyT,Json,std::vector>; |
274 | | |
275 | | template <typename Json> |
276 | | using array = json_array<Json,std::vector>; |
277 | | |
278 | | template <typename CharT,typename CharTraits,typename Allocator> |
279 | | using member_key = std::basic_string<CharT, CharTraits, Allocator>; |
280 | | }; |
281 | | |
282 | | struct order_preserving_policy |
283 | | { |
284 | | template <typename KeyT,typename Json> |
285 | | using object = order_preserving_json_object<KeyT,Json,std::vector>; |
286 | | |
287 | | template <typename Json> |
288 | | using array = json_array<Json,std::vector>; |
289 | | |
290 | | template <typename CharT,typename CharTraits,typename Allocator> |
291 | | using member_key = std::basic_string<CharT, CharTraits, Allocator>; |
292 | | }; |
293 | | |
294 | | template <typename Policy,typename KeyT,typename Json,typename Enable=void> |
295 | | struct object_iterator_typedefs |
296 | | { |
297 | | }; |
298 | | |
299 | | template <typename Policy,typename KeyT,typename Json> |
300 | | struct object_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if< |
301 | | !ext_traits::is_detected<ext_traits::container_object_iterator_type_t, Policy>::value || |
302 | | !ext_traits::is_detected<ext_traits::container_const_object_iterator_type_t, Policy>::value>::type> |
303 | | { |
304 | | using object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template object<KeyT,Json>::iterator>; |
305 | | using const_object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template object<KeyT,Json>::const_iterator>; |
306 | | }; |
307 | | |
308 | | template <typename Policy,typename KeyT,typename Json> |
309 | | struct object_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if< |
310 | | ext_traits::is_detected<ext_traits::container_object_iterator_type_t, Policy>::value && |
311 | | ext_traits::is_detected<ext_traits::container_const_object_iterator_type_t, Policy>::value>::type> |
312 | | { |
313 | | using object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template object_iterator<KeyT,Json>>; |
314 | | using const_object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template const_object_iterator<KeyT,Json>>; |
315 | | }; |
316 | | |
317 | | template <typename Policy,typename KeyT,typename Json,typename Enable=void> |
318 | | struct array_iterator_typedefs |
319 | | { |
320 | | }; |
321 | | |
322 | | template <typename Policy,typename KeyT,typename Json> |
323 | | struct array_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if< |
324 | | !ext_traits::is_detected<ext_traits::container_array_iterator_type_t, Policy>::value || |
325 | | !ext_traits::is_detected<ext_traits::container_const_array_iterator_type_t, Policy>::value>::type> |
326 | | { |
327 | | using array_iterator_type = typename Policy::template array<Json>::iterator; |
328 | | using const_array_iterator_type = typename Policy::template array<Json>::const_iterator; |
329 | | }; |
330 | | |
331 | | template <typename Policy,typename KeyT,typename Json> |
332 | | struct array_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if< |
333 | | ext_traits::is_detected<ext_traits::container_array_iterator_type_t, Policy>::value && |
334 | | ext_traits::is_detected<ext_traits::container_const_array_iterator_type_t, Policy>::value>::type> |
335 | | { |
336 | | using array_iterator_type = typename Policy::template array_iterator_type<Json>; |
337 | | using const_array_iterator_type = typename Policy::template const_array_iterator_type<Json>; |
338 | | }; |
339 | | |
340 | | template <typename IteratorT,typename ConstIteratorT> |
341 | | class range |
342 | | { |
343 | | public: |
344 | | using iterator = IteratorT; |
345 | | using const_iterator = ConstIteratorT; |
346 | | using reverse_iterator = std::reverse_iterator<IteratorT>; |
347 | | using const_reverse_iterator = std::reverse_iterator<ConstIteratorT>; |
348 | | private: |
349 | | iterator first_; |
350 | | iterator last_; |
351 | | public: |
352 | | range(const IteratorT& first, const IteratorT& last) |
353 | 41.3k | : first_(first), last_(last) |
354 | 41.3k | { |
355 | 41.3k | } jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::range(std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*> const&, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*> const&) Line | Count | Source | 353 | 8.11k | : first_(first), last_(last) | 354 | 8.11k | { | 355 | 8.11k | } |
jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::range(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) Line | Count | Source | 353 | 33.1k | : first_(first), last_(last) | 354 | 33.1k | { | 355 | 33.1k | } |
|
356 | | |
357 | | iterator begin() const noexcept |
358 | 41.3k | { |
359 | 41.3k | return first_; |
360 | 41.3k | } jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::begin() const Line | Count | Source | 358 | 8.11k | { | 359 | 8.11k | return first_; | 360 | 8.11k | } |
jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::begin() const Line | Count | Source | 358 | 33.1k | { | 359 | 33.1k | return first_; | 360 | 33.1k | } |
Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::begin() const Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::begin() const Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::begin() const Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::begin() const Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::begin() const Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::begin() const |
361 | | iterator end() const noexcept |
362 | 41.3k | { |
363 | 41.3k | return last_; |
364 | 41.3k | } jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::end() const Line | Count | Source | 362 | 8.11k | { | 363 | 8.11k | return last_; | 364 | 8.11k | } |
jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::end() const Line | Count | Source | 362 | 33.1k | { | 363 | 33.1k | return last_; | 364 | 33.1k | } |
Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::end() const Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::end() const Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::end() const Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::end() const Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::end() const Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::end() const |
365 | | const_iterator cbegin() const noexcept |
366 | | { |
367 | | return first_; |
368 | | } |
369 | | const_iterator cend() const noexcept |
370 | | { |
371 | | return last_; |
372 | | } |
373 | | reverse_iterator rbegin() const noexcept |
374 | | { |
375 | | return reverse_iterator(last_); |
376 | | } |
377 | | reverse_iterator rend() const noexcept |
378 | | { |
379 | | return reverse_iterator(first_); |
380 | | } |
381 | | const_reverse_iterator crbegin() const noexcept |
382 | | { |
383 | | return reverse_iterator(last_); |
384 | | } |
385 | | const_reverse_iterator crend() const noexcept |
386 | | { |
387 | | return reverse_iterator(first_); |
388 | | } |
389 | | }; |
390 | | |
391 | | template <typename CharT,typename Policy,typename Allocator> |
392 | | class basic_json |
393 | | { |
394 | | public: |
395 | | static_assert(std::allocator_traits<Allocator>::is_always_equal::value || ext_traits::is_propagating_allocator<Allocator>::value, |
396 | | "Regular stateful allocators must be wrapped with std::scoped_allocator_adaptor"); |
397 | | |
398 | | using allocator_type = Allocator; |
399 | | |
400 | | using policy_type = Policy; |
401 | | using char_type = CharT; |
402 | | using char_traits_type = std::char_traits<char_type>; |
403 | | using string_view_type = jsoncons::basic_string_view<char_type,char_traits_type>; |
404 | | |
405 | | using char_allocator_type = typename std::allocator_traits<allocator_type>:: template rebind_alloc<char_type>; |
406 | | |
407 | | using string_type = std::basic_string<char_type,char_traits_type,char_allocator_type>; |
408 | | |
409 | | using key_type = typename policy_type::template member_key<char_type,char_traits_type,char_allocator_type>; |
410 | | |
411 | | using reference = basic_json&; |
412 | | using const_reference = const basic_json&; |
413 | | using pointer = basic_json*; |
414 | | using const_pointer = const basic_json*; |
415 | | |
416 | | using key_value_type = key_value<key_type,basic_json>; |
417 | | |
418 | | using array = typename policy_type::template array<basic_json>; |
419 | | |
420 | | using key_value_allocator_type = typename std::allocator_traits<allocator_type>:: template rebind_alloc<key_value_type>; |
421 | | |
422 | | using object = typename policy_type::template object<key_type,basic_json>; |
423 | | |
424 | | using object_iterator = typename object_iterator_typedefs<policy_type,key_type,basic_json>::object_iterator_type; |
425 | | using const_object_iterator = typename object_iterator_typedefs<policy_type,key_type,basic_json>::const_object_iterator_type; |
426 | | using array_iterator = typename array_iterator_typedefs<policy_type,key_type,basic_json>::array_iterator_type; |
427 | | using const_array_iterator = typename array_iterator_typedefs<policy_type,key_type,basic_json>::const_array_iterator_type; |
428 | | |
429 | | using object_range_type = range<object_iterator, const_object_iterator>; |
430 | | using const_object_range_type = range<const_object_iterator, const_object_iterator>; |
431 | | using array_range_type = range<array_iterator, const_array_iterator>; |
432 | | using const_array_range_type = range<const_array_iterator, const_array_iterator>; |
433 | | |
434 | | private: |
435 | | |
436 | | static constexpr uint8_t major_type_shift = 0x04; |
437 | | static constexpr uint8_t additional_information_mask = (1U << 4) - 1; |
438 | | |
439 | | public: |
440 | | struct common_storage |
441 | | { |
442 | | uint8_t storage_kind_:4; |
443 | | uint8_t short_str_length_:4; |
444 | | semantic_tag tag_; |
445 | | }; |
446 | | |
447 | | struct null_storage |
448 | | { |
449 | | uint8_t storage_kind_:4; |
450 | | uint8_t short_str_length_:4; |
451 | | semantic_tag tag_; |
452 | | |
453 | | null_storage(semantic_tag tag = semantic_tag::none) |
454 | 32.4M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::null)), short_str_length_(0), tag_(tag) |
455 | 32.4M | { |
456 | 32.4M | } |
457 | | }; |
458 | | |
459 | | struct empty_object_storage |
460 | | { |
461 | | uint8_t storage_kind_:4; |
462 | | uint8_t short_str_length_:4; |
463 | | semantic_tag tag_; |
464 | | |
465 | | empty_object_storage(semantic_tag tag) |
466 | 413 | : storage_kind_(static_cast<uint8_t>(json_storage_kind::empty_object)), short_str_length_(0), tag_(tag) |
467 | 413 | { |
468 | 413 | } |
469 | | }; |
470 | | |
471 | | struct bool_storage |
472 | | { |
473 | | uint8_t storage_kind_:4; |
474 | | uint8_t short_str_length_:4; |
475 | | semantic_tag tag_; |
476 | | bool val_; |
477 | | |
478 | | bool_storage(bool val, semantic_tag tag) |
479 | 2.23M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::boolean)), short_str_length_(0), tag_(tag), |
480 | 2.23M | val_(val) |
481 | 2.23M | { |
482 | 2.23M | } |
483 | | |
484 | | bool value() const |
485 | | { |
486 | | return val_; |
487 | | } |
488 | | |
489 | | }; |
490 | | |
491 | | struct int64_storage |
492 | | { |
493 | | uint8_t storage_kind_:4; |
494 | | uint8_t short_str_length_:4; |
495 | | semantic_tag tag_; |
496 | | int64_t val_; |
497 | | |
498 | | int64_storage(int64_t val, |
499 | | semantic_tag tag = semantic_tag::none) |
500 | 2.58M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::int64)), short_str_length_(0), tag_(tag), |
501 | 2.58M | val_(val) |
502 | 2.58M | { |
503 | 2.58M | } |
504 | | |
505 | | int64_t value() const |
506 | | { |
507 | | return val_; |
508 | | } |
509 | | }; |
510 | | |
511 | | struct uint64_storage |
512 | | { |
513 | | uint8_t storage_kind_:4; |
514 | | uint8_t short_str_length_:4; |
515 | | semantic_tag tag_; |
516 | | uint64_t val_; |
517 | | |
518 | | uint64_storage(uint64_t val, |
519 | | semantic_tag tag = semantic_tag::none) |
520 | 2.47M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::uint64)), short_str_length_(0), tag_(tag), |
521 | 2.47M | val_(val) |
522 | 2.47M | { |
523 | 2.47M | } |
524 | | |
525 | | uint64_t value() const |
526 | | { |
527 | | return val_; |
528 | | } |
529 | | }; |
530 | | |
531 | | struct half_storage |
532 | | { |
533 | | uint8_t storage_kind_:4; |
534 | | uint8_t short_str_length_:4; |
535 | | semantic_tag tag_; |
536 | | uint16_t val_; |
537 | | |
538 | | half_storage(uint16_t val, semantic_tag tag = semantic_tag::none) |
539 | 0 | : storage_kind_(static_cast<uint8_t>(json_storage_kind::half_float)), short_str_length_(0), tag_(tag), |
540 | 0 | val_(val) |
541 | 0 | { |
542 | 0 | } |
543 | | |
544 | | uint16_t value() const |
545 | | { |
546 | | return val_; |
547 | | } |
548 | | }; |
549 | | |
550 | | struct double_storage |
551 | | { |
552 | | uint8_t storage_kind_:4; |
553 | | uint8_t short_str_length_:4; |
554 | | semantic_tag tag_; |
555 | | double val_; |
556 | | |
557 | | double_storage(double val, |
558 | | semantic_tag tag = semantic_tag::none) |
559 | 173k | : storage_kind_(static_cast<uint8_t>(json_storage_kind::float64)), short_str_length_(0), tag_(tag), |
560 | 173k | val_(val) |
561 | 173k | { |
562 | 173k | } |
563 | | |
564 | | double value() const |
565 | | { |
566 | | return val_; |
567 | | } |
568 | | }; |
569 | | |
570 | | struct short_string_storage |
571 | | { |
572 | | static constexpr size_t capacity = (2*sizeof(uint64_t) - 2*sizeof(uint8_t))/sizeof(char_type); |
573 | | static constexpr size_t max_length = capacity - 1; |
574 | | |
575 | | uint8_t storage_kind_:4; |
576 | | uint8_t short_str_length_:4; |
577 | | semantic_tag tag_; |
578 | | char_type data_[capacity]; |
579 | | |
580 | | short_string_storage(const char_type* p, uint8_t length, semantic_tag tag) |
581 | 3.35M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::short_str)), short_str_length_(length), tag_(tag) |
582 | 3.35M | { |
583 | 3.35M | JSONCONS_ASSERT(length <= max_length); |
584 | 3.35M | std::memcpy(data_,p,length*sizeof(char_type)); |
585 | 3.35M | data_[length] = 0; |
586 | 3.35M | } |
587 | | |
588 | | short_string_storage(const short_string_storage& other) |
589 | 1.31k | : storage_kind_(other.storage_kind_), short_str_length_(other.short_str_length_), tag_(other.tag_) |
590 | 1.31k | { |
591 | 1.31k | std::memcpy(data_,other.data_,other.short_str_length_*sizeof(char_type)); |
592 | 1.31k | data_[short_str_length_] = 0; |
593 | 1.31k | } |
594 | | |
595 | | short_string_storage& operator=(const short_string_storage& other) = delete; |
596 | | |
597 | | uint8_t length() const |
598 | 0 | { |
599 | 0 | return short_str_length_; |
600 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage::length() const |
601 | | |
602 | | const char_type* data() const |
603 | | { |
604 | | return data_; |
605 | | } |
606 | | |
607 | | const char_type* c_str() const |
608 | | { |
609 | | return data_; |
610 | | } |
611 | | }; |
612 | | |
613 | | // long_string_storage |
614 | | struct long_string_storage |
615 | | { |
616 | | using heap_string_factory_type = jsoncons::utility::heap_string_factory<char_type,null_type,Allocator>; |
617 | | using pointer = typename heap_string_factory_type::pointer; |
618 | | |
619 | | uint8_t storage_kind_:4; |
620 | | uint8_t short_str_length_:4; |
621 | | semantic_tag tag_; |
622 | | pointer ptr_; |
623 | | |
624 | | long_string_storage(pointer ptr, semantic_tag tag) |
625 | 1.83k | : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(tag), ptr_(ptr) |
626 | 1.83k | { |
627 | 1.83k | } |
628 | | |
629 | | long_string_storage(const long_string_storage& other) |
630 | 15.3k | : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_) |
631 | 15.3k | { |
632 | 15.3k | } |
633 | | |
634 | | long_string_storage& operator=(const long_string_storage& other) = delete; |
635 | | |
636 | | semantic_tag tag() const |
637 | | { |
638 | | return tag_; |
639 | | } |
640 | | |
641 | | const char_type* data() const |
642 | | { |
643 | | return ptr_->data(); |
644 | | } |
645 | | |
646 | | const char_type* c_str() const |
647 | | { |
648 | | return ptr_->c_str(); |
649 | | } |
650 | | |
651 | | std::size_t length() const |
652 | 0 | { |
653 | 0 | return ptr_->length(); |
654 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage::length() const |
655 | | |
656 | | Allocator get_allocator() const |
657 | | { |
658 | | return ptr_->get_allocator(); |
659 | | } |
660 | | }; |
661 | | |
662 | | // byte_string_storage |
663 | | struct byte_string_storage |
664 | | { |
665 | | using heap_string_factory_type = jsoncons::utility::heap_string_factory<uint8_t,uint64_t,Allocator>; |
666 | | using pointer = typename heap_string_factory_type::pointer; |
667 | | |
668 | | uint8_t storage_kind_:4; |
669 | | uint8_t short_str_length_:4; |
670 | | semantic_tag tag_; |
671 | | pointer ptr_; |
672 | | |
673 | | byte_string_storage(pointer ptr, semantic_tag tag) |
674 | 0 | : storage_kind_(static_cast<uint8_t>(json_storage_kind::byte_str)), short_str_length_(0), tag_(tag), ptr_(ptr) |
675 | 0 | { |
676 | 0 | } |
677 | | |
678 | | byte_string_storage(const byte_string_storage& other) |
679 | 0 | : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_) |
680 | 0 | { |
681 | 0 | } |
682 | | |
683 | | byte_string_storage& operator=(const byte_string_storage& other) = delete; |
684 | | |
685 | | semantic_tag tag() const |
686 | | { |
687 | | return tag_; |
688 | | } |
689 | | |
690 | | const uint8_t* data() const |
691 | | { |
692 | | return ptr_->data(); |
693 | | } |
694 | | |
695 | | std::size_t length() const |
696 | 0 | { |
697 | 0 | return ptr_->length(); |
698 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage::length() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage::length() const |
699 | | |
700 | | uint64_t ext_tag() const |
701 | | { |
702 | | return ptr_->extra(); |
703 | | } |
704 | | |
705 | | Allocator get_allocator() const |
706 | | { |
707 | | return ptr_->get_allocator(); |
708 | | } |
709 | | }; |
710 | | #if defined(__GNUC__) && JSONCONS_GCC_AVAILABLE(12,0,0) |
711 | | # pragma GCC diagnostic push |
712 | | # pragma GCC diagnostic ignored "-Wmaybe-uninitialized" |
713 | | #endif |
714 | | |
715 | | struct array_storage |
716 | | { |
717 | | using allocator_type = typename std::allocator_traits<Allocator>:: template rebind_alloc<array>; |
718 | | using pointer = typename std::allocator_traits<allocator_type>::pointer; |
719 | | |
720 | | uint8_t storage_kind_:4; |
721 | | uint8_t short_str_length_:4; |
722 | | semantic_tag tag_; |
723 | | pointer ptr_; |
724 | | |
725 | | array_storage(pointer ptr, semantic_tag tag) |
726 | 6.56M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::array)), short_str_length_(0), tag_(tag), ptr_(ptr) |
727 | 6.56M | { |
728 | 6.56M | } |
729 | | |
730 | | array_storage(const array_storage& other) |
731 | 12.9M | : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_) |
732 | 12.9M | { |
733 | 12.9M | } |
734 | | |
735 | | void assign(const array_storage& other) |
736 | | { |
737 | | tag_ = other.tag_; |
738 | | *ptr_ = *(other.ptr_); |
739 | | } |
740 | | |
741 | | array_storage& operator=(const array_storage& other) = delete; |
742 | | |
743 | | semantic_tag tag() const |
744 | | { |
745 | | return tag_; |
746 | | } |
747 | | |
748 | | Allocator get_allocator() const |
749 | | { |
750 | | return ptr_->get_allocator(); |
751 | | } |
752 | | |
753 | | array& value() |
754 | 5.57M | { |
755 | 5.57M | return *ptr_; |
756 | 5.57M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value() Line | Count | Source | 754 | 5.57M | { | 755 | 5.57M | return *ptr_; | 756 | 5.57M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value() |
757 | | |
758 | | const array& value() const |
759 | 36.8k | { |
760 | 36.8k | return *ptr_; |
761 | 36.8k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value() const Line | Count | Source | 759 | 36.8k | { | 760 | 36.8k | return *ptr_; | 761 | 36.8k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value() const |
762 | | }; |
763 | | |
764 | | // object_storage |
765 | | struct object_storage |
766 | | { |
767 | | using allocator_type = typename std::allocator_traits<Allocator>:: template rebind_alloc<object>; |
768 | | using pointer = typename std::allocator_traits<allocator_type>::pointer; |
769 | | |
770 | | uint8_t storage_kind_:4; |
771 | | uint8_t short_str_length_:4; |
772 | | semantic_tag tag_; |
773 | | pointer ptr_; |
774 | | |
775 | | object_storage(pointer ptr, semantic_tag tag) |
776 | 4.55M | : storage_kind_(static_cast<uint8_t>(json_storage_kind::object)), short_str_length_(0), tag_(tag), ptr_(ptr) |
777 | 4.55M | { |
778 | 4.55M | } |
779 | | |
780 | | explicit object_storage(const object_storage& other) |
781 | 8.15M | : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_) |
782 | 8.15M | { |
783 | 8.15M | } |
784 | | |
785 | | void assign(const object_storage& other) |
786 | | { |
787 | | tag_ = other.tag_; |
788 | | *ptr_ = *(other.ptr_); |
789 | | } |
790 | | |
791 | | object_storage& operator=(const object_storage& other) = delete; |
792 | | |
793 | | semantic_tag tag() const |
794 | | { |
795 | | return tag_; |
796 | | } |
797 | | |
798 | | object& value() |
799 | 108k | { |
800 | 108k | JSONCONS_ASSERT(ptr_ != nullptr); |
801 | 108k | return *ptr_; |
802 | 108k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value() Line | Count | Source | 799 | 108k | { | 800 | 108k | JSONCONS_ASSERT(ptr_ != nullptr); | 801 | 108k | return *ptr_; | 802 | 108k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() |
803 | | |
804 | | const object& value() const |
805 | 3.47k | { |
806 | 3.47k | JSONCONS_ASSERT(ptr_ != nullptr); |
807 | 3.47k | return *ptr_; |
808 | 3.47k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value() const Line | Count | Source | 805 | 3.47k | { | 806 | 3.47k | JSONCONS_ASSERT(ptr_ != nullptr); | 807 | 3.47k | return *ptr_; | 808 | 3.47k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() const |
809 | | |
810 | | Allocator get_allocator() const |
811 | | { |
812 | | JSONCONS_ASSERT(ptr_ != nullptr); |
813 | | return ptr_->get_allocator(); |
814 | | } |
815 | | }; |
816 | | #if defined(__GNUC__) && JSONCONS_GCC_AVAILABLE(12,0,0) |
817 | | # pragma GCC diagnostic pop |
818 | | #endif |
819 | | |
820 | | private: |
821 | | struct json_const_reference_storage |
822 | | { |
823 | | uint8_t storage_kind_:4; |
824 | | uint8_t short_str_length_:4; |
825 | | semantic_tag tag_; |
826 | | std::reference_wrapper<const basic_json> ref_; |
827 | | |
828 | | json_const_reference_storage(const basic_json& ref) |
829 | | : storage_kind_(static_cast<uint8_t>(json_storage_kind::json_const_ref)), short_str_length_(0), tag_(ref.tag()), |
830 | | ref_(ref) |
831 | | { |
832 | | } |
833 | | |
834 | | const basic_json& value() const |
835 | 0 | { |
836 | 0 | return ref_.get(); |
837 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage::value() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage::value() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage::value() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage::value() const |
838 | | }; |
839 | | |
840 | | struct json_reference_storage |
841 | | { |
842 | | uint8_t storage_kind_:4; |
843 | | uint8_t short_str_length_:4; |
844 | | semantic_tag tag_; |
845 | | std::reference_wrapper<basic_json> ref_; |
846 | | |
847 | | json_reference_storage(basic_json& ref) |
848 | | : storage_kind_(static_cast<uint8_t>(json_storage_kind::json_ref)), short_str_length_(0), tag_(ref.tag()), |
849 | | ref_(ref) |
850 | | { |
851 | | } |
852 | | |
853 | | basic_json& value() |
854 | 0 | { |
855 | 0 | return ref_.get(); |
856 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage::value() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage::value() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage::value() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage::value() |
857 | | |
858 | | const basic_json& value() const |
859 | 0 | { |
860 | 0 | return ref_.get(); |
861 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage::value() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage::value() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage::value() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage::value() const |
862 | | }; |
863 | | |
864 | | union |
865 | | { |
866 | | common_storage common_; |
867 | | null_storage null_; |
868 | | bool_storage boolean_; |
869 | | int64_storage int64_; |
870 | | uint64_storage uint64_; |
871 | | half_storage half_float_; |
872 | | double_storage float64_; |
873 | | short_string_storage short_str_; |
874 | | long_string_storage long_str_; |
875 | | byte_string_storage byte_str_; |
876 | | array_storage array_; |
877 | | object_storage object_; |
878 | | empty_object_storage empty_object_; |
879 | | json_const_reference_storage json_const_pointer_; |
880 | | json_reference_storage json_ref_; |
881 | | }; |
882 | | |
883 | | void destroy() |
884 | 111M | { |
885 | 111M | switch (storage_kind()) |
886 | 111M | { |
887 | 1.83k | case json_storage_kind::long_str: |
888 | 1.83k | { |
889 | 1.83k | if (cast<long_string_storage>().ptr_ != nullptr) |
890 | 1.83k | { |
891 | 1.83k | long_string_storage::heap_string_factory_type::destroy(cast<long_string_storage>().ptr_); |
892 | 1.83k | } |
893 | 1.83k | break; |
894 | 0 | } |
895 | 0 | case json_storage_kind::byte_str: |
896 | 0 | if (cast<byte_string_storage>().ptr_ != nullptr) |
897 | 0 | { |
898 | 0 | byte_string_storage::heap_string_factory_type::destroy(cast<byte_string_storage>().ptr_); |
899 | 0 | } |
900 | 0 | break; |
901 | 6.56M | case json_storage_kind::array: |
902 | 6.56M | { |
903 | 6.56M | if (cast<array_storage>().ptr_ != nullptr) |
904 | 6.56M | { |
905 | 6.56M | auto& stor = cast<array_storage>(); |
906 | 6.56M | typename array_storage::allocator_type alloc{stor.ptr_->get_allocator()}; |
907 | 6.56M | std::allocator_traits<typename array_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_)); |
908 | 6.56M | std::allocator_traits<typename array_storage::allocator_type>::deallocate(alloc, stor.ptr_,1); |
909 | 6.56M | } |
910 | 6.56M | break; |
911 | 0 | } |
912 | 4.55M | case json_storage_kind::object: |
913 | 4.55M | { |
914 | 4.55M | if (cast<object_storage>().ptr_ != nullptr) |
915 | 4.55M | { |
916 | 4.55M | auto& stor = cast<object_storage>(); |
917 | 4.55M | typename object_storage::allocator_type alloc{stor.ptr_->get_allocator()}; |
918 | 4.55M | std::allocator_traits<typename object_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_)); |
919 | 4.55M | std::allocator_traits<typename object_storage::allocator_type>::deallocate(alloc, stor.ptr_,1); |
920 | 4.55M | } |
921 | 4.55M | break; |
922 | 0 | } |
923 | 100M | default: |
924 | 100M | break; |
925 | 111M | } |
926 | 111M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::destroy() Line | Count | Source | 884 | 111M | { | 885 | 111M | switch (storage_kind()) | 886 | 111M | { | 887 | 1.83k | case json_storage_kind::long_str: | 888 | 1.83k | { | 889 | 1.83k | if (cast<long_string_storage>().ptr_ != nullptr) | 890 | 1.83k | { | 891 | 1.83k | long_string_storage::heap_string_factory_type::destroy(cast<long_string_storage>().ptr_); | 892 | 1.83k | } | 893 | 1.83k | break; | 894 | 0 | } | 895 | 0 | case json_storage_kind::byte_str: | 896 | 0 | if (cast<byte_string_storage>().ptr_ != nullptr) | 897 | 0 | { | 898 | 0 | byte_string_storage::heap_string_factory_type::destroy(cast<byte_string_storage>().ptr_); | 899 | 0 | } | 900 | 0 | break; | 901 | 6.56M | case json_storage_kind::array: | 902 | 6.56M | { | 903 | 6.56M | if (cast<array_storage>().ptr_ != nullptr) | 904 | 6.56M | { | 905 | 6.56M | auto& stor = cast<array_storage>(); | 906 | 6.56M | typename array_storage::allocator_type alloc{stor.ptr_->get_allocator()}; | 907 | 6.56M | std::allocator_traits<typename array_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_)); | 908 | 6.56M | std::allocator_traits<typename array_storage::allocator_type>::deallocate(alloc, stor.ptr_,1); | 909 | 6.56M | } | 910 | 6.56M | break; | 911 | 0 | } | 912 | 4.55M | case json_storage_kind::object: | 913 | 4.55M | { | 914 | 4.55M | if (cast<object_storage>().ptr_ != nullptr) | 915 | 4.55M | { | 916 | 4.55M | auto& stor = cast<object_storage>(); | 917 | 4.55M | typename object_storage::allocator_type alloc{stor.ptr_->get_allocator()}; | 918 | 4.55M | std::allocator_traits<typename object_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_)); | 919 | 4.55M | std::allocator_traits<typename object_storage::allocator_type>::deallocate(alloc, stor.ptr_,1); | 920 | 4.55M | } | 921 | 4.55M | break; | 922 | 0 | } | 923 | 100M | default: | 924 | 100M | break; | 925 | 111M | } | 926 | 111M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::destroy() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::destroy() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::destroy() |
927 | | |
928 | | typename long_string_storage::pointer create_long_string(const allocator_type& alloc, const char_type* data, std::size_t length) |
929 | 1.83k | { |
930 | 1.83k | using heap_string_factory_type = jsoncons::utility::heap_string_factory<char_type,null_type,Allocator>; |
931 | 1.83k | return heap_string_factory_type::create(data, length, null_type(), alloc); |
932 | 1.83k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, char const*, unsigned long) Line | Count | Source | 929 | 1.83k | { | 930 | 1.83k | using heap_string_factory_type = jsoncons::utility::heap_string_factory<char_type,null_type,Allocator>; | 931 | 1.83k | return heap_string_factory_type::create(data, length, null_type(), alloc); | 932 | 1.83k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, wchar_t const*, unsigned long) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, char const*, unsigned long) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, wchar_t const*, unsigned long) |
933 | | |
934 | | typename byte_string_storage::pointer create_byte_string(const allocator_type& alloc, const uint8_t* data, std::size_t length, |
935 | | uint64_t ext_tag) |
936 | 0 | { |
937 | 0 | using heap_string_factory_type = jsoncons::utility::heap_string_factory<uint8_t,uint64_t,Allocator>; |
938 | 0 | return heap_string_factory_type::create(data, length, ext_tag, alloc); |
939 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long) |
940 | | |
941 | | template <typename... Args> |
942 | | typename array_storage::pointer create_array(const allocator_type& alloc, Args&& ... args) |
943 | 6.56M | { |
944 | 6.56M | using stor_allocator_type = typename array_storage::allocator_type; |
945 | 6.56M | stor_allocator_type stor_alloc(alloc); |
946 | 6.56M | auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1); |
947 | 6.56M | JSONCONS_TRY |
948 | 6.56M | { |
949 | 6.56M | std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), |
950 | 6.56M | std::forward<Args>(args)...); |
951 | 6.56M | } |
952 | 6.56M | JSONCONS_CATCH(...) |
953 | 6.56M | { |
954 | 0 | std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1); |
955 | 0 | JSONCONS_RETHROW; |
956 | 0 | } |
957 | 6.56M | return ptr; |
958 | 6.56M | } jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&) Line | Count | Source | 943 | 6.56M | { | 944 | 6.56M | using stor_allocator_type = typename array_storage::allocator_type; | 945 | 6.56M | stor_allocator_type stor_alloc(alloc); | 946 | 6.56M | auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1); | 947 | 6.56M | JSONCONS_TRY | 948 | 6.56M | { | 949 | 6.56M | std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), | 950 | 6.56M | std::forward<Args>(args)...); | 951 | 6.56M | } | 952 | 6.56M | JSONCONS_CATCH(...) | 953 | 6.56M | { | 954 | 0 | std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1); | 955 | 0 | JSONCONS_RETHROW; | 956 | 0 | } | 957 | 6.56M | return ptr; | 958 | 6.56M | } |
Unexecuted instantiation: jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&) Unexecuted instantiation: jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&) Unexecuted instantiation: jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&) |
959 | | |
960 | | template <typename... Args> |
961 | | typename object_storage::pointer create_object(const allocator_type& alloc, Args&& ... args) |
962 | 4.55M | { |
963 | 4.55M | using stor_allocator_type = typename object_storage::allocator_type; |
964 | 4.55M | stor_allocator_type stor_alloc(alloc); |
965 | 4.55M | auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1); |
966 | 4.55M | JSONCONS_TRY |
967 | 4.55M | { |
968 | 4.55M | std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), |
969 | 4.55M | std::forward<Args>(args)...); |
970 | 4.55M | } |
971 | 4.55M | JSONCONS_CATCH(...) |
972 | 4.55M | { |
973 | 0 | std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1); |
974 | 0 | JSONCONS_RETHROW; |
975 | 0 | } |
976 | 4.55M | return ptr; |
977 | 4.55M | } jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&) Line | Count | Source | 962 | 4.55M | { | 963 | 4.55M | using stor_allocator_type = typename object_storage::allocator_type; | 964 | 4.55M | stor_allocator_type stor_alloc(alloc); | 965 | 4.55M | auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1); | 966 | 4.55M | JSONCONS_TRY | 967 | 4.55M | { | 968 | 4.55M | std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), | 969 | 4.55M | std::forward<Args>(args)...); | 970 | 4.55M | } | 971 | 4.55M | JSONCONS_CATCH(...) | 972 | 4.55M | { | 973 | 0 | std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1); | 974 | 0 | JSONCONS_RETHROW; | 975 | 0 | } | 976 | 4.55M | return ptr; | 977 | 4.55M | } |
Unexecuted instantiation: jsoncons::sorted_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&) Unexecuted instantiation: jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&) Unexecuted instantiation: jsoncons::order_preserving_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&) |
978 | | |
979 | | template <typename StorageType,typename... Args> |
980 | | void construct(Args&&... args) |
981 | 75.5M | { |
982 | 75.5M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); |
983 | 75.5M | } void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&) Line | Count | Source | 981 | 9.51k | { | 982 | 9.51k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 9.51k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>() Line | Count | Source | 981 | 20.9M | { | 982 | 20.9M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 20.9M | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&) Line | Count | Source | 981 | 12.8M | { | 982 | 12.8M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 12.8M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&) Line | Count | Source | 981 | 8.15M | { | 982 | 8.15M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 8.15M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&) Line | Count | Source | 981 | 413 | { | 982 | 413 | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 413 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 4.55M | { | 982 | 4.55M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 4.55M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&) Line | Count | Source | 981 | 71.9k | { | 982 | 71.9k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 71.9k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&) Line | Count | Source | 981 | 103 | { | 982 | 103 | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 103 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&) Line | Count | Source | 981 | 2.84k | { | 982 | 2.84k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 2.84k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&) Line | Count | Source | 981 | 1.30k | { | 982 | 1.30k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 1.30k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&) Line | Count | Source | 981 | 64 | { | 982 | 64 | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 64 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&) Line | Count | Source | 981 | 29 | { | 982 | 29 | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 29 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&) Line | Count | Source | 981 | 1.31k | { | 982 | 1.31k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 1.31k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 6.56M | { | 982 | 6.56M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 6.56M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&) Line | Count | Source | 981 | 11.4M | { | 982 | 11.4M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 11.4M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 2.23M | { | 982 | 2.23M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 2.23M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, char const*&, unsigned char, jsoncons::semantic_tag&>(char const*&, unsigned char&&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 3.35M | { | 982 | 3.35M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 3.35M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::utility::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 1.83k | { | 982 | 1.83k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 1.83k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 2.47M | { | 982 | 2.47M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 2.47M | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 2.58M | { | 982 | 2.58M | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 2.58M | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&) Line | Count | Source | 981 | 173k | { | 982 | 173k | ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...); | 983 | 173k | } |
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>() Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::sorted_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::sorted_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, wchar_t const*&, unsigned char, jsoncons::semantic_tag&>(wchar_t const*&, unsigned char&&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::utility::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>() Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, char const*&, unsigned char, jsoncons::semantic_tag&>(char const*&, unsigned char&&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::utility::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>() Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::order_preserving_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::order_preserving_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, wchar_t const*&, unsigned char, jsoncons::semantic_tag&>(wchar_t const*&, unsigned char&&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::utility::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::utility::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&) |
984 | | |
985 | | template <typename T> |
986 | | struct identity { using type = T*; }; |
987 | | public: |
988 | | template <typename T> |
989 | | T& cast() |
990 | 124M | { |
991 | 124M | return cast(identity<T>()); |
992 | 124M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>() Line | Count | Source | 990 | 24.5k | { | 991 | 24.5k | return cast(identity<T>()); | 992 | 24.5k | } |
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>() jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>() Line | Count | Source | 990 | 51.0M | { | 991 | 51.0M | return cast(identity<T>()); | 992 | 51.0M | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>() Line | Count | Source | 990 | 32.5M | { | 991 | 32.5M | return cast(identity<T>()); | 992 | 32.5M | } |
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>() jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>() Line | Count | Source | 990 | 30.0M | { | 991 | 30.0M | return cast(identity<T>()); | 992 | 30.0M | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>() Line | Count | Source | 990 | 619 | { | 991 | 619 | return cast(identity<T>()); | 992 | 619 | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>() Line | Count | Source | 990 | 2.23M | { | 991 | 2.23M | return cast(identity<T>()); | 992 | 2.23M | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>() Line | Count | Source | 990 | 2.58M | { | 991 | 2.58M | return cast(identity<T>()); | 992 | 2.58M | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>() Line | Count | Source | 990 | 2.47M | { | 991 | 2.47M | return cast(identity<T>()); | 992 | 2.47M | } |
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>() jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>() Line | Count | Source | 990 | 173k | { | 991 | 173k | return cast(identity<T>()); | 992 | 173k | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>() Line | Count | Source | 990 | 3.35M | { | 991 | 3.35M | return cast(identity<T>()); | 992 | 3.35M | } |
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>() |
993 | | |
994 | | template <typename T> |
995 | | const T& cast() const |
996 | 40.2k | { |
997 | 40.2k | return cast(identity<T>()); |
998 | 40.2k | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>() const jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>() const Line | Count | Source | 996 | 36.8k | { | 997 | 36.8k | return cast(identity<T>()); | 998 | 36.8k | } |
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>() const Line | Count | Source | 996 | 3.47k | { | 997 | 3.47k | return cast(identity<T>()); | 998 | 3.47k | } |
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>() const |
999 | | private: |
1000 | | null_storage& cast(identity<null_storage>) |
1001 | 32.5M | { |
1002 | 32.5M | return null_; |
1003 | 32.5M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>) Line | Count | Source | 1001 | 32.5M | { | 1002 | 32.5M | return null_; | 1003 | 32.5M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>) |
1004 | | |
1005 | | const null_storage& cast(identity<null_storage>) const |
1006 | | { |
1007 | | return null_; |
1008 | | } |
1009 | | |
1010 | | empty_object_storage& cast(identity<empty_object_storage>) |
1011 | 619 | { |
1012 | 619 | return empty_object_; |
1013 | 619 | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>) Line | Count | Source | 1011 | 619 | { | 1012 | 619 | return empty_object_; | 1013 | 619 | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>) |
1014 | | |
1015 | | const empty_object_storage& cast(identity<empty_object_storage>) const |
1016 | | { |
1017 | | return empty_object_; |
1018 | | } |
1019 | | |
1020 | | bool_storage& cast(identity<bool_storage>) |
1021 | 2.23M | { |
1022 | 2.23M | return boolean_; |
1023 | 2.23M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>) Line | Count | Source | 1021 | 2.23M | { | 1022 | 2.23M | return boolean_; | 1023 | 2.23M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>) |
1024 | | |
1025 | | const bool_storage& cast(identity<bool_storage>) const |
1026 | | { |
1027 | | return boolean_; |
1028 | | } |
1029 | | |
1030 | | int64_storage& cast(identity<int64_storage>) |
1031 | 2.58M | { |
1032 | 2.58M | return int64_; |
1033 | 2.58M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>) Line | Count | Source | 1031 | 2.58M | { | 1032 | 2.58M | return int64_; | 1033 | 2.58M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>) |
1034 | | |
1035 | | const int64_storage& cast(identity<int64_storage>) const |
1036 | | { |
1037 | | return int64_; |
1038 | | } |
1039 | | |
1040 | | uint64_storage& cast(identity<uint64_storage>) |
1041 | 2.47M | { |
1042 | 2.47M | return uint64_; |
1043 | 2.47M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>) Line | Count | Source | 1041 | 2.47M | { | 1042 | 2.47M | return uint64_; | 1043 | 2.47M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>) |
1044 | | |
1045 | | const uint64_storage& cast(identity<uint64_storage>) const |
1046 | | { |
1047 | | return uint64_; |
1048 | | } |
1049 | | |
1050 | | half_storage& cast(identity<half_storage>) |
1051 | 0 | { |
1052 | 0 | return half_float_; |
1053 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>) |
1054 | | |
1055 | | const half_storage& cast(identity<half_storage>) const |
1056 | | { |
1057 | | return half_float_; |
1058 | | } |
1059 | | |
1060 | | double_storage& cast(identity<double_storage>) |
1061 | 173k | { |
1062 | 173k | return float64_; |
1063 | 173k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>) Line | Count | Source | 1061 | 173k | { | 1062 | 173k | return float64_; | 1063 | 173k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>) |
1064 | | |
1065 | | const double_storage& cast(identity<double_storage>) const |
1066 | | { |
1067 | | return float64_; |
1068 | | } |
1069 | | |
1070 | | short_string_storage& cast(identity<short_string_storage>) |
1071 | 3.35M | { |
1072 | 3.35M | return short_str_; |
1073 | 3.35M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>) Line | Count | Source | 1071 | 3.35M | { | 1072 | 3.35M | return short_str_; | 1073 | 3.35M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>) |
1074 | | |
1075 | | const short_string_storage& cast(identity<short_string_storage>) const |
1076 | 0 | { |
1077 | 0 | return short_str_; |
1078 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>) const |
1079 | | |
1080 | | long_string_storage& cast(identity<long_string_storage>) |
1081 | 24.5k | { |
1082 | 24.5k | return long_str_; |
1083 | 24.5k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>) Line | Count | Source | 1081 | 24.5k | { | 1082 | 24.5k | return long_str_; | 1083 | 24.5k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>) |
1084 | | |
1085 | | const long_string_storage& cast(identity<long_string_storage>) const |
1086 | 0 | { |
1087 | 0 | return long_str_; |
1088 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>) const |
1089 | | |
1090 | | byte_string_storage& cast(identity<byte_string_storage>) |
1091 | 0 | { |
1092 | 0 | return byte_str_; |
1093 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>) |
1094 | | |
1095 | | const byte_string_storage& cast(identity<byte_string_storage>) const |
1096 | 0 | { |
1097 | 0 | return byte_str_; |
1098 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>) const |
1099 | | |
1100 | | object_storage& cast(identity<object_storage>) |
1101 | 30.0M | { |
1102 | 30.0M | return object_; |
1103 | 30.0M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>) Line | Count | Source | 1101 | 30.0M | { | 1102 | 30.0M | return object_; | 1103 | 30.0M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>) |
1104 | | |
1105 | | const object_storage& cast(identity<object_storage>) const |
1106 | 3.47k | { |
1107 | 3.47k | return object_; |
1108 | 3.47k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>) const Line | Count | Source | 1106 | 3.47k | { | 1107 | 3.47k | return object_; | 1108 | 3.47k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>) const |
1109 | | |
1110 | | array_storage& cast(identity<array_storage>) |
1111 | 51.0M | { |
1112 | 51.0M | return array_; |
1113 | 51.0M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>) Line | Count | Source | 1111 | 51.0M | { | 1112 | 51.0M | return array_; | 1113 | 51.0M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>) |
1114 | | |
1115 | | const array_storage& cast(identity<array_storage>) const |
1116 | 36.8k | { |
1117 | 36.8k | return array_; |
1118 | 36.8k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>) const Line | Count | Source | 1116 | 36.8k | { | 1117 | 36.8k | return array_; | 1118 | 36.8k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>) const |
1119 | | |
1120 | | json_const_reference_storage& cast(identity<json_const_reference_storage>) |
1121 | 0 | { |
1122 | 0 | return json_const_pointer_; |
1123 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>) |
1124 | | |
1125 | | json_reference_storage& cast(identity<json_reference_storage>) |
1126 | 0 | { |
1127 | 0 | return json_ref_; |
1128 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>) |
1129 | | |
1130 | | const json_const_reference_storage& cast(identity<json_const_reference_storage>) const |
1131 | 0 | { |
1132 | 0 | return json_const_pointer_; |
1133 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>) const |
1134 | | |
1135 | | const json_reference_storage& cast(identity<json_reference_storage>) const |
1136 | 0 | { |
1137 | 0 | return json_ref_; |
1138 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>) const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>) const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>) const |
1139 | | |
1140 | | template <typename TypeL,typename TypeR> |
1141 | | void swap_l_r(basic_json& other) noexcept |
1142 | 77.6k | { |
1143 | 77.6k | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); |
1144 | 77.6k | } Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 5.28k | { | 1143 | 5.28k | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 5.28k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 63.4k | { | 1143 | 63.4k | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 63.4k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 3.25k | { | 1143 | 3.25k | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 3.25k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 9 | { | 1143 | 9 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 9 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 29 | { | 1143 | 29 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 29 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 65 | { | 1143 | 65 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 65 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 274 | { | 1143 | 274 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 274 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 1.58k | { | 1143 | 1.58k | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 1.58k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 991 | { | 1143 | 991 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 991 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 9 | { | 1143 | 9 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 9 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 895 | { | 1143 | 895 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 895 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 402 | { | 1143 | 402 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 402 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 5 | { | 1143 | 5 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 5 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 59 | { | 1143 | 59 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 59 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 27 | { | 1143 | 27 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 27 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 2 | { | 1143 | 2 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 2 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 253 | { | 1143 | 253 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 253 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 399 | { | 1143 | 399 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 399 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1142 | 661 | { | 1143 | 661 | swap_l_r(identity<TypeL>(), identity<TypeR>(), other); | 1144 | 661 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) |
1145 | | |
1146 | | template <typename TypeL,typename TypeR> |
1147 | | void swap_l_r(identity<TypeL>,identity<TypeR>,basic_json& other) noexcept |
1148 | 77.6k | { |
1149 | 77.6k | TypeR temp{other.cast<TypeR>()}; |
1150 | 77.6k | other.construct<TypeL>(cast<TypeL>()); |
1151 | 77.6k | construct<TypeR>(temp); |
1152 | 77.6k | } Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 5.28k | { | 1149 | 5.28k | TypeR temp{other.cast<TypeR>()}; | 1150 | 5.28k | other.construct<TypeL>(cast<TypeL>()); | 1151 | 5.28k | construct<TypeR>(temp); | 1152 | 5.28k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 63.4k | { | 1149 | 63.4k | TypeR temp{other.cast<TypeR>()}; | 1150 | 63.4k | other.construct<TypeL>(cast<TypeL>()); | 1151 | 63.4k | construct<TypeR>(temp); | 1152 | 63.4k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 3.25k | { | 1149 | 3.25k | TypeR temp{other.cast<TypeR>()}; | 1150 | 3.25k | other.construct<TypeL>(cast<TypeL>()); | 1151 | 3.25k | construct<TypeR>(temp); | 1152 | 3.25k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 9 | { | 1149 | 9 | TypeR temp{other.cast<TypeR>()}; | 1150 | 9 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 9 | construct<TypeR>(temp); | 1152 | 9 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 29 | { | 1149 | 29 | TypeR temp{other.cast<TypeR>()}; | 1150 | 29 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 29 | construct<TypeR>(temp); | 1152 | 29 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 65 | { | 1149 | 65 | TypeR temp{other.cast<TypeR>()}; | 1150 | 65 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 65 | construct<TypeR>(temp); | 1152 | 65 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 274 | { | 1149 | 274 | TypeR temp{other.cast<TypeR>()}; | 1150 | 274 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 274 | construct<TypeR>(temp); | 1152 | 274 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 1.58k | { | 1149 | 1.58k | TypeR temp{other.cast<TypeR>()}; | 1150 | 1.58k | other.construct<TypeL>(cast<TypeL>()); | 1151 | 1.58k | construct<TypeR>(temp); | 1152 | 1.58k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 991 | { | 1149 | 991 | TypeR temp{other.cast<TypeR>()}; | 1150 | 991 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 991 | construct<TypeR>(temp); | 1152 | 991 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 9 | { | 1149 | 9 | TypeR temp{other.cast<TypeR>()}; | 1150 | 9 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 9 | construct<TypeR>(temp); | 1152 | 9 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 895 | { | 1149 | 895 | TypeR temp{other.cast<TypeR>()}; | 1150 | 895 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 895 | construct<TypeR>(temp); | 1152 | 895 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 402 | { | 1149 | 402 | TypeR temp{other.cast<TypeR>()}; | 1150 | 402 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 402 | construct<TypeR>(temp); | 1152 | 402 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 5 | { | 1149 | 5 | TypeR temp{other.cast<TypeR>()}; | 1150 | 5 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 5 | construct<TypeR>(temp); | 1152 | 5 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 59 | { | 1149 | 59 | TypeR temp{other.cast<TypeR>()}; | 1150 | 59 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 59 | construct<TypeR>(temp); | 1152 | 59 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 27 | { | 1149 | 27 | TypeR temp{other.cast<TypeR>()}; | 1150 | 27 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 27 | construct<TypeR>(temp); | 1152 | 27 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 2 | { | 1149 | 2 | TypeR temp{other.cast<TypeR>()}; | 1150 | 2 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 2 | construct<TypeR>(temp); | 1152 | 2 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 253 | { | 1149 | 253 | TypeR temp{other.cast<TypeR>()}; | 1150 | 253 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 253 | construct<TypeR>(temp); | 1152 | 253 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 399 | { | 1149 | 399 | TypeR temp{other.cast<TypeR>()}; | 1150 | 399 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 399 | construct<TypeR>(temp); | 1152 | 399 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1148 | 661 | { | 1149 | 661 | TypeR temp{other.cast<TypeR>()}; | 1150 | 661 | other.construct<TypeL>(cast<TypeL>()); | 1151 | 661 | construct<TypeR>(temp); | 1152 | 661 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) |
1153 | | |
1154 | | template <typename TypeL> |
1155 | | void swap_l(basic_json& other) noexcept |
1156 | 77.6k | { |
1157 | 77.6k | switch (other.storage_kind()) |
1158 | 77.6k | { |
1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; |
1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; |
1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; |
1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; |
1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; |
1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; |
1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; |
1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; |
1167 | 5.83k | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; |
1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; |
1169 | 66.4k | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; |
1170 | 5.38k | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; |
1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; |
1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; |
1173 | 0 | default: |
1174 | 0 | JSONCONS_UNREACHABLE(); |
1175 | 0 | break; |
1176 | 77.6k | } |
1177 | 77.6k | } void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 71.9k | { | 1157 | 71.9k | switch (other.storage_kind()) | 1158 | 71.9k | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 5.28k | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 63.4k | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 3.25k | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 71.9k | } | 1177 | 71.9k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 103 | { | 1157 | 103 | switch (other.storage_kind()) | 1158 | 103 | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 9 | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 29 | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 65 | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 103 | } | 1177 | 103 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 2.84k | { | 1157 | 2.84k | switch (other.storage_kind()) | 1158 | 2.84k | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 274 | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 1.58k | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 991 | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 2.84k | } | 1177 | 2.84k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 1.30k | { | 1157 | 1.30k | switch (other.storage_kind()) | 1158 | 1.30k | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 9 | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 895 | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 402 | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 1.30k | } | 1177 | 1.30k | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 64 | { | 1157 | 64 | switch (other.storage_kind()) | 1158 | 64 | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 5 | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 59 | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 0 | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 64 | } | 1177 | 64 | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 29 | { | 1157 | 29 | switch (other.storage_kind()) | 1158 | 29 | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 0 | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 27 | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 2 | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 29 | } | 1177 | 29 | } |
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1156 | 1.31k | { | 1157 | 1.31k | switch (other.storage_kind()) | 1158 | 1.31k | { | 1159 | 0 | case json_storage_kind::null : swap_l_r<TypeL, null_storage>(other); break; | 1160 | 0 | case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break; | 1161 | 0 | case json_storage_kind::boolean : swap_l_r<TypeL, bool_storage>(other); break; | 1162 | 0 | case json_storage_kind::int64 : swap_l_r<TypeL, int64_storage>(other); break; | 1163 | 0 | case json_storage_kind::uint64 : swap_l_r<TypeL, uint64_storage>(other); break; | 1164 | 0 | case json_storage_kind::half_float : swap_l_r<TypeL, half_storage>(other); break; | 1165 | 0 | case json_storage_kind::float64 : swap_l_r<TypeL, double_storage>(other); break; | 1166 | 0 | case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break; | 1167 | 253 | case json_storage_kind::long_str : swap_l_r<TypeL, long_string_storage>(other); break; | 1168 | 0 | case json_storage_kind::byte_str : swap_l_r<TypeL, byte_string_storage>(other); break; | 1169 | 399 | case json_storage_kind::array : swap_l_r<TypeL, array_storage>(other); break; | 1170 | 661 | case json_storage_kind::object : swap_l_r<TypeL, object_storage>(other); break; | 1171 | 0 | case json_storage_kind::json_const_ref : swap_l_r<TypeL, json_const_reference_storage>(other); break; | 1172 | 0 | case json_storage_kind::json_ref : swap_l_r<TypeL, json_reference_storage>(other); break; | 1173 | 0 | default: | 1174 | 0 | JSONCONS_UNREACHABLE(); | 1175 | 0 | break; | 1176 | 1.31k | } | 1177 | 1.31k | } |
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_const_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::json_reference_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) |
1178 | | |
1179 | | void uninitialized_copy(const basic_json& other) |
1180 | | { |
1181 | | if (is_trivial_storage(other.storage_kind())) |
1182 | | { |
1183 | | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); |
1184 | | } |
1185 | | else |
1186 | | { |
1187 | | switch (other.storage_kind()) |
1188 | | { |
1189 | | case json_storage_kind::long_str: |
1190 | | { |
1191 | | const auto& stor = other.cast<long_string_storage>(); |
1192 | | auto ptr = create_long_string(std::allocator_traits<Allocator>::select_on_container_copy_construction(stor.get_allocator()), |
1193 | | stor.data(), stor.length()); |
1194 | | construct<long_string_storage>(ptr, other.tag()); |
1195 | | break; |
1196 | | } |
1197 | | case json_storage_kind::byte_str: |
1198 | | { |
1199 | | const auto& stor = other.cast<byte_string_storage>(); |
1200 | | auto ptr = create_byte_string(std::allocator_traits<Allocator>::select_on_container_copy_construction(stor.get_allocator()), |
1201 | | stor.data(), stor.length(), stor.ext_tag()); |
1202 | | construct<byte_string_storage>(ptr, other.tag()); |
1203 | | break; |
1204 | | } |
1205 | | case json_storage_kind::array: |
1206 | | { |
1207 | | auto ptr = create_array( |
1208 | | std::allocator_traits<Allocator>::select_on_container_copy_construction(other.cast<array_storage>().get_allocator()), |
1209 | | other.cast<array_storage>().value()); |
1210 | | construct<array_storage>(ptr, other.tag()); |
1211 | | break; |
1212 | | } |
1213 | | case json_storage_kind::object: |
1214 | | { |
1215 | | auto ptr = create_object( |
1216 | | std::allocator_traits<Allocator>::select_on_container_copy_construction(other.cast<object_storage>().get_allocator()), |
1217 | | other.cast<object_storage>().value()); |
1218 | | construct<object_storage>(ptr, other.tag()); |
1219 | | break; |
1220 | | } |
1221 | | default: |
1222 | | JSONCONS_UNREACHABLE(); |
1223 | | break; |
1224 | | } |
1225 | | } |
1226 | | } |
1227 | | |
1228 | | void uninitialized_copy_a(const basic_json& other, const Allocator& alloc) |
1229 | | { |
1230 | | if (is_trivial_storage(other.storage_kind())) |
1231 | | { |
1232 | | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); |
1233 | | } |
1234 | | else |
1235 | | { |
1236 | | switch (other.storage_kind()) |
1237 | | { |
1238 | | case json_storage_kind::long_str: |
1239 | | { |
1240 | | const auto& storage = other.cast<long_string_storage>(); |
1241 | | auto ptr = create_long_string(alloc, storage.data(), storage.length()); |
1242 | | construct<long_string_storage>(ptr, other.tag()); |
1243 | | break; |
1244 | | } |
1245 | | case json_storage_kind::byte_str: |
1246 | | { |
1247 | | const auto& storage = other.cast<byte_string_storage>(); |
1248 | | auto ptr = create_byte_string(alloc, storage.data(), storage.length(), storage.ext_tag()); |
1249 | | construct<byte_string_storage>(ptr, other.tag()); |
1250 | | break; |
1251 | | } |
1252 | | case json_storage_kind::array: |
1253 | | { |
1254 | | auto ptr = create_array(alloc, other.cast<array_storage>().value()); |
1255 | | construct<array_storage>(ptr, other.tag()); |
1256 | | break; |
1257 | | } |
1258 | | case json_storage_kind::object: |
1259 | | { |
1260 | | auto ptr = create_object(alloc, other.cast<object_storage>().value()); |
1261 | | construct<object_storage>(ptr, other.tag()); |
1262 | | break; |
1263 | | } |
1264 | | default: |
1265 | | JSONCONS_UNREACHABLE(); |
1266 | | break; |
1267 | | } |
1268 | | } |
1269 | | } |
1270 | | |
1271 | | void uninitialized_move(basic_json&& other) noexcept |
1272 | 77.9M | { |
1273 | 77.9M | if (is_trivial_storage(other.storage_kind())) |
1274 | 57.0M | { |
1275 | 57.0M | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); |
1276 | 57.0M | } |
1277 | 20.9M | else |
1278 | 20.9M | { |
1279 | 20.9M | switch (other.storage_kind()) |
1280 | 20.9M | { |
1281 | 3.67k | case json_storage_kind::long_str: |
1282 | 3.67k | construct<long_string_storage>(other.cast<long_string_storage>()); |
1283 | 3.67k | other.construct<null_storage>(); |
1284 | 3.67k | break; |
1285 | 0 | case json_storage_kind::byte_str: |
1286 | 0 | construct<byte_string_storage>(other.cast<byte_string_storage>()); |
1287 | 0 | other.construct<null_storage>(); |
1288 | 0 | break; |
1289 | 12.8M | case json_storage_kind::array: |
1290 | 12.8M | construct<array_storage>(other.cast<array_storage>()); |
1291 | 12.8M | other.construct<null_storage>(); |
1292 | 12.8M | break; |
1293 | 8.14M | case json_storage_kind::object: |
1294 | 8.14M | construct<object_storage>(other.cast<object_storage>()); |
1295 | 8.14M | other.construct<null_storage>(); |
1296 | 8.14M | break; |
1297 | 0 | default: |
1298 | 0 | JSONCONS_UNREACHABLE(); |
1299 | 0 | break; |
1300 | 20.9M | } |
1301 | 20.9M | } |
1302 | 77.9M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Line | Count | Source | 1272 | 77.9M | { | 1273 | 77.9M | if (is_trivial_storage(other.storage_kind())) | 1274 | 57.0M | { | 1275 | 57.0M | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); | 1276 | 57.0M | } | 1277 | 20.9M | else | 1278 | 20.9M | { | 1279 | 20.9M | switch (other.storage_kind()) | 1280 | 20.9M | { | 1281 | 3.67k | case json_storage_kind::long_str: | 1282 | 3.67k | construct<long_string_storage>(other.cast<long_string_storage>()); | 1283 | 3.67k | other.construct<null_storage>(); | 1284 | 3.67k | break; | 1285 | 0 | case json_storage_kind::byte_str: | 1286 | 0 | construct<byte_string_storage>(other.cast<byte_string_storage>()); | 1287 | 0 | other.construct<null_storage>(); | 1288 | 0 | break; | 1289 | 12.8M | case json_storage_kind::array: | 1290 | 12.8M | construct<array_storage>(other.cast<array_storage>()); | 1291 | 12.8M | other.construct<null_storage>(); | 1292 | 12.8M | break; | 1293 | 8.14M | case json_storage_kind::object: | 1294 | 8.14M | construct<object_storage>(other.cast<object_storage>()); | 1295 | 8.14M | other.construct<null_storage>(); | 1296 | 8.14M | break; | 1297 | 0 | default: | 1298 | 0 | JSONCONS_UNREACHABLE(); | 1299 | 0 | break; | 1300 | 20.9M | } | 1301 | 20.9M | } | 1302 | 77.9M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) |
1303 | | |
1304 | | void uninitialized_move_a(std::true_type /* stateless allocator */, |
1305 | | basic_json&& other, const Allocator&) noexcept |
1306 | | { |
1307 | | uninitialized_move(std::move(other)); |
1308 | | } |
1309 | | |
1310 | | void uninitialized_move_a(std::false_type /* stateful allocator */, |
1311 | | basic_json&& other, const Allocator& alloc) noexcept |
1312 | | { |
1313 | | if (is_trivial_storage(other.storage_kind())) |
1314 | | { |
1315 | | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); |
1316 | | } |
1317 | | else |
1318 | | { |
1319 | | uninitialized_copy_a(other, alloc); |
1320 | | } |
1321 | | } |
1322 | | |
1323 | | void copy_assignment(const basic_json& other) |
1324 | | { |
1325 | | if (is_trivial_storage(other.storage_kind())) |
1326 | | { |
1327 | | destroy(); |
1328 | | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); |
1329 | | } |
1330 | | else if (storage_kind() == other.storage_kind()) |
1331 | | { |
1332 | | switch (other.storage_kind()) |
1333 | | { |
1334 | | case json_storage_kind::long_str: |
1335 | | { |
1336 | | auto alloc = cast<long_string_storage>().get_allocator(); |
1337 | | destroy(); |
1338 | | uninitialized_copy_a(other, alloc); |
1339 | | break; |
1340 | | } |
1341 | | case json_storage_kind::byte_str: |
1342 | | { |
1343 | | auto alloc = cast<byte_string_storage>().get_allocator(); |
1344 | | destroy(); |
1345 | | uninitialized_copy_a(other, alloc); |
1346 | | break; |
1347 | | } |
1348 | | case json_storage_kind::array: |
1349 | | cast<array_storage>().assign(other.cast<array_storage>()); |
1350 | | break; |
1351 | | case json_storage_kind::object: |
1352 | | cast<object_storage>().assign(other.cast<object_storage>()); |
1353 | | break; |
1354 | | default: |
1355 | | JSONCONS_UNREACHABLE(); |
1356 | | break; |
1357 | | } |
1358 | | } |
1359 | | else if (is_trivial_storage(storage_kind())) // rhs is not trivial storage |
1360 | | { |
1361 | | destroy(); |
1362 | | uninitialized_copy(other); |
1363 | | } |
1364 | | else // lhs and rhs are not trivial storage |
1365 | | { |
1366 | | auto alloc = get_allocator(); |
1367 | | destroy(); |
1368 | | uninitialized_copy_a(other, alloc); |
1369 | | } |
1370 | | } |
1371 | | |
1372 | | void move_assignment(basic_json&& other) noexcept |
1373 | 17.1M | { |
1374 | 17.1M | if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind())) |
1375 | 17.0M | { |
1376 | 17.0M | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); |
1377 | 17.0M | } |
1378 | 77.5k | else |
1379 | 77.5k | { |
1380 | 77.5k | swap(other); |
1381 | 77.5k | } |
1382 | 17.1M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Line | Count | Source | 1373 | 17.1M | { | 1374 | 17.1M | if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind())) | 1375 | 17.0M | { | 1376 | 17.0M | std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json)); | 1377 | 17.0M | } | 1378 | 77.5k | else | 1379 | 77.5k | { | 1380 | 77.5k | swap(other); | 1381 | 77.5k | } | 1382 | 17.1M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) |
1383 | | |
1384 | | basic_json& evaluate_with_default() |
1385 | | { |
1386 | | return *this; |
1387 | | } |
1388 | | |
1389 | | basic_json& evaluate(const string_view_type& name) |
1390 | | { |
1391 | | return at(name); |
1392 | | } |
1393 | | |
1394 | | const basic_json& evaluate(const string_view_type& name) const |
1395 | | { |
1396 | | return at(name); |
1397 | | } |
1398 | | |
1399 | | public: |
1400 | | |
1401 | | basic_json& evaluate() |
1402 | | { |
1403 | | return *this; |
1404 | | } |
1405 | | |
1406 | | const basic_json& evaluate() const |
1407 | | { |
1408 | | return *this; |
1409 | | } |
1410 | | |
1411 | | basic_json& operator=(const basic_json& other) |
1412 | | { |
1413 | | if (this != &other) |
1414 | | { |
1415 | | copy_assignment(other); |
1416 | | } |
1417 | | return *this; |
1418 | | } |
1419 | | |
1420 | | basic_json& operator=(basic_json&& other) noexcept |
1421 | 17.1M | { |
1422 | 17.1M | if (this != &other) |
1423 | 17.1M | { |
1424 | 17.1M | move_assignment(std::move(other)); |
1425 | 17.1M | } |
1426 | 17.1M | return *this; |
1427 | 17.1M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Line | Count | Source | 1421 | 17.1M | { | 1422 | 17.1M | if (this != &other) | 1423 | 17.1M | { | 1424 | 17.1M | move_assignment(std::move(other)); | 1425 | 17.1M | } | 1426 | 17.1M | return *this; | 1427 | 17.1M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) |
1428 | | |
1429 | | json_storage_kind storage_kind() const |
1430 | 256M | { |
1431 | | // It is legal to access 'common_.storage_kind_' even though |
1432 | | // common_ is not the active member of the union because 'storage_kind_' |
1433 | | // is a part of the common initial sequence of all union members |
1434 | | // as defined in 11.4-25 of the Standard. |
1435 | 256M | return static_cast<json_storage_kind>(common_.storage_kind_); |
1436 | 256M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::storage_kind() const Line | Count | Source | 1430 | 256M | { | 1431 | | // It is legal to access 'common_.storage_kind_' even though | 1432 | | // common_ is not the active member of the union because 'storage_kind_' | 1433 | | // is a part of the common initial sequence of all union members | 1434 | | // as defined in 11.4-25 of the Standard. | 1435 | 256M | return static_cast<json_storage_kind>(common_.storage_kind_); | 1436 | 256M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::storage_kind() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::storage_kind() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::storage_kind() const |
1437 | | |
1438 | | json_type type() const |
1439 | | { |
1440 | | switch(storage_kind()) |
1441 | | { |
1442 | | case json_storage_kind::null: |
1443 | | return json_type::null_value; |
1444 | | case json_storage_kind::boolean: |
1445 | | return json_type::bool_value; |
1446 | | case json_storage_kind::int64: |
1447 | | return json_type::int64_value; |
1448 | | case json_storage_kind::uint64: |
1449 | | return json_type::uint64_value; |
1450 | | case json_storage_kind::half_float: |
1451 | | return json_type::half_value; |
1452 | | case json_storage_kind::float64: |
1453 | | return json_type::double_value; |
1454 | | case json_storage_kind::short_str: |
1455 | | case json_storage_kind::long_str: |
1456 | | return json_type::string_value; |
1457 | | case json_storage_kind::byte_str: |
1458 | | return json_type::byte_string_value; |
1459 | | case json_storage_kind::array: |
1460 | | return json_type::array_value; |
1461 | | case json_storage_kind::empty_object: |
1462 | | case json_storage_kind::object: |
1463 | | return json_type::object_value; |
1464 | | case json_storage_kind::json_const_ref: |
1465 | | return cast<json_const_reference_storage>().value().type(); |
1466 | | case json_storage_kind::json_ref: |
1467 | | return cast<json_reference_storage>().value().type(); |
1468 | | default: |
1469 | | JSONCONS_UNREACHABLE(); |
1470 | | break; |
1471 | | } |
1472 | | } |
1473 | | |
1474 | | semantic_tag tag() const |
1475 | 0 | { |
1476 | | // It is legal to access 'common_.tag_' even though |
1477 | | // common_ is not the active member of the union because 'tag_' |
1478 | | // is a part of the common initial sequence of all union members |
1479 | | // as defined in 11.4-25 of the Standard. |
1480 | 0 | switch(storage_kind()) |
1481 | 0 | { |
1482 | 0 | case json_storage_kind::json_const_ref: |
1483 | 0 | return cast<json_const_reference_storage>().value().tag(); |
1484 | 0 | case json_storage_kind::json_ref: |
1485 | 0 | return cast<json_reference_storage>().value().tag(); |
1486 | 0 | default: |
1487 | 0 | return common_.tag_; |
1488 | 0 | } |
1489 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::tag() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::tag() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::tag() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::tag() const |
1490 | | |
1491 | | std::size_t size() const |
1492 | | { |
1493 | | switch (storage_kind()) |
1494 | | { |
1495 | | case json_storage_kind::array: |
1496 | | return cast<array_storage>().value().size(); |
1497 | | case json_storage_kind::empty_object: |
1498 | | return 0; |
1499 | | case json_storage_kind::object: |
1500 | | return cast<object_storage>().value().size(); |
1501 | | case json_storage_kind::json_const_ref: |
1502 | | return cast<json_const_reference_storage>().value().size(); |
1503 | | case json_storage_kind::json_ref: |
1504 | | return cast<json_reference_storage>().value().size(); |
1505 | | default: |
1506 | | return 0; |
1507 | | } |
1508 | | } |
1509 | | |
1510 | | string_view_type as_string_view() const |
1511 | | { |
1512 | | auto result = try_as_string_view(); |
1513 | | if (!result) |
1514 | | { |
1515 | | JSONCONS_THROW(conv_error(result.error().code())); |
1516 | | } |
1517 | | return *result; |
1518 | | } |
1519 | | |
1520 | | conversion_result<string_view_type> try_as_string_view() const |
1521 | | { |
1522 | | using result_type = conversion_result<string_view_type>; |
1523 | | |
1524 | | switch (storage_kind()) |
1525 | | { |
1526 | | case json_storage_kind::short_str: |
1527 | | return result_type(in_place, cast<short_string_storage>().data(),cast<short_string_storage>().length()); |
1528 | | case json_storage_kind::long_str: |
1529 | | return result_type(in_place, cast<long_string_storage>().data(),cast<long_string_storage>().length()); |
1530 | | case json_storage_kind::json_const_ref: |
1531 | | return result_type(cast<json_const_reference_storage>().value().as_string_view()); |
1532 | | case json_storage_kind::json_ref: |
1533 | | return result_type(cast<json_reference_storage>().value().as_string_view()); |
1534 | | default: |
1535 | | return result_type(jsoncons::unexpect, conv_errc::not_string); |
1536 | | } |
1537 | | } |
1538 | | |
1539 | | template <typename T,typename Alloc, typename TempAlloc> |
1540 | | typename std::enable_if<ext_traits::is_basic_byte_string<T>::value,conversion_result<T>>::type |
1541 | | try_as_byte_string(const allocator_set<Alloc,TempAlloc>& aset) const |
1542 | | { |
1543 | | using value_type = T; |
1544 | | using result_type = conversion_result<value_type>; |
1545 | | |
1546 | | switch (storage_kind()) |
1547 | | { |
1548 | | case json_storage_kind::short_str: |
1549 | | { |
1550 | | value_type bytes = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator()); |
1551 | | const auto& stor = cast<short_string_storage>(); |
1552 | | auto res = string_to_bytes(stor.data(), stor.data()+stor.length(), tag(), bytes); |
1553 | | if (JSONCONS_UNLIKELY(res.ec != conv_errc{})) |
1554 | | { |
1555 | | return result_type(jsoncons::unexpect, conv_errc::not_byte_string); |
1556 | | } |
1557 | | return result_type(std::move(bytes)); |
1558 | | } |
1559 | | case json_storage_kind::long_str: |
1560 | | { |
1561 | | value_type bytes = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator()); |
1562 | | const auto& stor = cast<long_string_storage>(); |
1563 | | auto res = string_to_bytes(stor.data(), stor.data()+stor.length(), tag(), bytes); |
1564 | | if (JSONCONS_UNLIKELY(res.ec != conv_errc{})) |
1565 | | { |
1566 | | return result_type(jsoncons::unexpect, conv_errc::not_byte_string); |
1567 | | } |
1568 | | return result_type(std::move(bytes)); |
1569 | | } |
1570 | | case json_storage_kind::byte_str: |
1571 | | { |
1572 | | auto& bs = cast<byte_string_storage>(); |
1573 | | auto val = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator(), |
1574 | | bs.data(), bs.length()); |
1575 | | return result_type(std::move(val)); |
1576 | | } |
1577 | | case json_storage_kind::json_const_ref: |
1578 | | return cast<json_const_reference_storage>().value().template try_as_byte_string<T>(aset); |
1579 | | case json_storage_kind::json_ref: |
1580 | | return cast<json_reference_storage>().value().template try_as_byte_string<T>(aset); |
1581 | | default: |
1582 | | return result_type(jsoncons::unexpect, conv_errc::not_byte_string); |
1583 | | } |
1584 | | } |
1585 | | |
1586 | | template <typename BytesAlloc=std::allocator<uint8_t>> |
1587 | | basic_byte_string<BytesAlloc> as_byte_string() const |
1588 | | { |
1589 | | auto result = try_as_byte_string<basic_byte_string<BytesAlloc>>(make_alloc_set(BytesAlloc())); |
1590 | | if (!result) |
1591 | | { |
1592 | | JSONCONS_THROW(conv_error(result.error().code())); |
1593 | | } |
1594 | | return *result; |
1595 | | } |
1596 | | |
1597 | | conversion_result<byte_string_view> try_as_byte_string_view() const |
1598 | | { |
1599 | | using result_type = conversion_result<byte_string_view>; |
1600 | | |
1601 | | switch (storage_kind()) |
1602 | | { |
1603 | | case json_storage_kind::byte_str: |
1604 | | return result_type(in_place, cast<byte_string_storage>().data(),cast<byte_string_storage>().length()); |
1605 | | case json_storage_kind::json_const_ref: |
1606 | | return cast<json_const_reference_storage>().value().try_as_byte_string_view(); |
1607 | | case json_storage_kind::json_ref: |
1608 | | return cast<json_reference_storage>().value().try_as_byte_string_view(); |
1609 | | default: |
1610 | | return result_type(jsoncons::unexpect, conv_errc::not_byte_string); |
1611 | | } |
1612 | | } |
1613 | | |
1614 | | byte_string_view as_byte_string_view() const |
1615 | | { |
1616 | | auto result = try_as_byte_string_view(); |
1617 | | if (!result) |
1618 | | { |
1619 | | JSONCONS_THROW(conv_error(result.error().code())); |
1620 | | } |
1621 | | return *result; |
1622 | | } |
1623 | | |
1624 | | int compare(const basic_json& rhs) const noexcept |
1625 | | { |
1626 | | if (this == &rhs) |
1627 | | { |
1628 | | return 0; |
1629 | | } |
1630 | | switch (storage_kind()) |
1631 | | { |
1632 | | case json_storage_kind::json_const_ref: |
1633 | | switch (rhs.storage_kind()) |
1634 | | { |
1635 | | case json_storage_kind::json_const_ref: |
1636 | | return cast<json_const_reference_storage>().value().compare(rhs.cast<json_const_reference_storage>().value()); |
1637 | | default: |
1638 | | return cast<json_const_reference_storage>().value().compare(rhs); |
1639 | | } |
1640 | | break; |
1641 | | case json_storage_kind::json_ref: |
1642 | | switch (rhs.storage_kind()) |
1643 | | { |
1644 | | case json_storage_kind::json_ref: |
1645 | | return cast<json_reference_storage>().value().compare(rhs.cast<json_reference_storage>().value()); |
1646 | | default: |
1647 | | return cast<json_reference_storage>().value().compare(rhs); |
1648 | | } |
1649 | | break; |
1650 | | case json_storage_kind::null: |
1651 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1652 | | case json_storage_kind::empty_object: |
1653 | | switch (rhs.storage_kind()) |
1654 | | { |
1655 | | case json_storage_kind::empty_object: |
1656 | | return 0; |
1657 | | case json_storage_kind::object: |
1658 | | return rhs.empty() ? 0 : -1; |
1659 | | case json_storage_kind::json_const_ref: |
1660 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1661 | | case json_storage_kind::json_ref: |
1662 | | return compare(rhs.cast<json_reference_storage>().value()); |
1663 | | default: |
1664 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1665 | | } |
1666 | | break; |
1667 | | case json_storage_kind::boolean: |
1668 | | switch (rhs.storage_kind()) |
1669 | | { |
1670 | | case json_storage_kind::boolean: |
1671 | | return static_cast<int>(cast<bool_storage>().value()) - static_cast<int>(rhs.cast<bool_storage>().value()); |
1672 | | case json_storage_kind::json_const_ref: |
1673 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1674 | | case json_storage_kind::json_ref: |
1675 | | return compare(rhs.cast<json_reference_storage>().value()); |
1676 | | default: |
1677 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1678 | | } |
1679 | | break; |
1680 | | case json_storage_kind::int64: |
1681 | | switch (rhs.storage_kind()) |
1682 | | { |
1683 | | case json_storage_kind::int64: |
1684 | | { |
1685 | | if (cast<int64_storage>().value() == rhs.cast<int64_storage>().value()) |
1686 | | return 0; |
1687 | | return cast<int64_storage>().value() < rhs.cast<int64_storage>().value() ? -1 : 1; |
1688 | | } |
1689 | | case json_storage_kind::uint64: |
1690 | | if (cast<int64_storage>().value() < 0) |
1691 | | return -1; |
1692 | | else if (static_cast<uint64_t>(cast<int64_storage>().value()) == rhs.cast<uint64_storage>().value()) |
1693 | | return 0; |
1694 | | else |
1695 | | return static_cast<uint64_t>(cast<int64_storage>().value()) < rhs.cast<uint64_storage>().value() ? -1 : 1; |
1696 | | case json_storage_kind::float64: |
1697 | | { |
1698 | | double r = static_cast<double>(cast<int64_storage>().value()) - rhs.cast<double_storage>().value(); |
1699 | | return r == 0.0 ? 0 : (r < 0.0 ? -1 : 1); |
1700 | | } |
1701 | | case json_storage_kind::json_const_ref: |
1702 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1703 | | case json_storage_kind::json_ref: |
1704 | | return compare(rhs.cast<json_reference_storage>().value()); |
1705 | | default: |
1706 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1707 | | } |
1708 | | break; |
1709 | | case json_storage_kind::uint64: |
1710 | | switch (rhs.storage_kind()) |
1711 | | { |
1712 | | case json_storage_kind::int64: |
1713 | | if (rhs.cast<int64_storage>().value() < 0) |
1714 | | return 1; |
1715 | | else if (cast<uint64_storage>().value() == static_cast<uint64_t>(rhs.cast<int64_storage>().value())) |
1716 | | return 0; |
1717 | | else |
1718 | | return cast<uint64_storage>().value() < static_cast<uint64_t>(rhs.cast<int64_storage>().value()) ? -1 : 1; |
1719 | | case json_storage_kind::uint64: |
1720 | | if (cast<uint64_storage>().value() == static_cast<uint64_t>(rhs.cast<int64_storage>().value())) |
1721 | | return 0; |
1722 | | else |
1723 | | return cast<uint64_storage>().value() < static_cast<uint64_t>(rhs.cast<int64_storage>().value()) ? -1 : 1; |
1724 | | case json_storage_kind::float64: |
1725 | | { |
1726 | | auto r = static_cast<double>(cast<uint64_storage>().value()) - rhs.cast<double_storage>().value(); |
1727 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1728 | | } |
1729 | | case json_storage_kind::json_const_ref: |
1730 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1731 | | case json_storage_kind::json_ref: |
1732 | | return compare(rhs.cast<json_reference_storage>().value()); |
1733 | | default: |
1734 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1735 | | } |
1736 | | break; |
1737 | | case json_storage_kind::float64: |
1738 | | switch (rhs.storage_kind()) |
1739 | | { |
1740 | | case json_storage_kind::int64: |
1741 | | { |
1742 | | auto r = cast<double_storage>().value() - static_cast<double>(rhs.cast<int64_storage>().value()); |
1743 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1744 | | } |
1745 | | case json_storage_kind::uint64: |
1746 | | { |
1747 | | auto r = cast<double_storage>().value() - static_cast<double>(rhs.cast<uint64_storage>().value()); |
1748 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1749 | | } |
1750 | | case json_storage_kind::float64: |
1751 | | { |
1752 | | auto r = cast<double_storage>().value() - rhs.cast<double_storage>().value(); |
1753 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1754 | | } |
1755 | | case json_storage_kind::json_const_ref: |
1756 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1757 | | case json_storage_kind::json_ref: |
1758 | | return compare(rhs.cast<json_reference_storage>().value()); |
1759 | | default: |
1760 | | if (is_string_storage(rhs.storage_kind()) && is_number_tag(rhs.tag())) |
1761 | | { |
1762 | | double val1 = as_double(); |
1763 | | double val2 = rhs.as_double(); |
1764 | | auto r = val1 - val2; |
1765 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1766 | | } |
1767 | | else |
1768 | | { |
1769 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1770 | | } |
1771 | | } |
1772 | | break; |
1773 | | case json_storage_kind::short_str: |
1774 | | case json_storage_kind::long_str: |
1775 | | if (is_number_tag(tag())) |
1776 | | { |
1777 | | double val1 = as_double(); |
1778 | | switch (rhs.storage_kind()) |
1779 | | { |
1780 | | case json_storage_kind::int64: |
1781 | | { |
1782 | | auto r = val1 - static_cast<double>(rhs.cast<int64_storage>().value()); |
1783 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1784 | | } |
1785 | | case json_storage_kind::uint64: |
1786 | | { |
1787 | | auto r = val1 - static_cast<double>(rhs.cast<uint64_storage>().value()); |
1788 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1789 | | } |
1790 | | case json_storage_kind::float64: |
1791 | | { |
1792 | | auto r = val1 - rhs.cast<double_storage>().value(); |
1793 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1794 | | } |
1795 | | case json_storage_kind::json_const_ref: |
1796 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1797 | | case json_storage_kind::json_ref: |
1798 | | return compare(rhs.cast<json_reference_storage>().value()); |
1799 | | default: |
1800 | | if (is_string_storage(rhs.storage_kind())) |
1801 | | { |
1802 | | double val2 = rhs.as_double(); |
1803 | | auto r = val1 - val2; |
1804 | | return r == 0 ? 0 : (r < 0.0 ? -1 : 1); |
1805 | | } |
1806 | | else |
1807 | | { |
1808 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1809 | | } |
1810 | | } |
1811 | | } |
1812 | | else |
1813 | | { |
1814 | | // compare regular text |
1815 | | switch (rhs.storage_kind()) |
1816 | | { |
1817 | | case json_storage_kind::short_str: |
1818 | | return as_string_view().compare(rhs.as_string_view()); |
1819 | | case json_storage_kind::long_str: |
1820 | | return as_string_view().compare(rhs.as_string_view()); |
1821 | | case json_storage_kind::json_const_ref: |
1822 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1823 | | case json_storage_kind::json_ref: |
1824 | | return compare(rhs.cast<json_reference_storage>().value()); |
1825 | | default: |
1826 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1827 | | } |
1828 | | } |
1829 | | break; |
1830 | | case json_storage_kind::byte_str: |
1831 | | switch (rhs.storage_kind()) |
1832 | | { |
1833 | | case json_storage_kind::byte_str: |
1834 | | { |
1835 | | return as_byte_string_view().compare(rhs.as_byte_string_view()); |
1836 | | } |
1837 | | case json_storage_kind::json_const_ref: |
1838 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1839 | | case json_storage_kind::json_ref: |
1840 | | return compare(rhs.cast<json_reference_storage>().value()); |
1841 | | default: |
1842 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1843 | | } |
1844 | | break; |
1845 | | case json_storage_kind::array: |
1846 | | switch (rhs.storage_kind()) |
1847 | | { |
1848 | | case json_storage_kind::array: |
1849 | | { |
1850 | | if (cast<array_storage>().value() == rhs.cast<array_storage>().value()) |
1851 | | return 0; |
1852 | | else |
1853 | | return cast<array_storage>().value() < rhs.cast<array_storage>().value() ? -1 : 1; |
1854 | | } |
1855 | | case json_storage_kind::json_const_ref: |
1856 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1857 | | case json_storage_kind::json_ref: |
1858 | | return compare(rhs.cast<json_reference_storage>().value()); |
1859 | | default: |
1860 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1861 | | } |
1862 | | break; |
1863 | | case json_storage_kind::object: |
1864 | | switch (rhs.storage_kind()) |
1865 | | { |
1866 | | case json_storage_kind::empty_object: |
1867 | | return empty() ? 0 : 1; |
1868 | | case json_storage_kind::object: |
1869 | | { |
1870 | | if (cast<object_storage>().value() == rhs.cast<object_storage>().value()) |
1871 | | return 0; |
1872 | | else |
1873 | | return cast<object_storage>().value() < rhs.cast<object_storage>().value() ? -1 : 1; |
1874 | | } |
1875 | | case json_storage_kind::json_const_ref: |
1876 | | return compare(rhs.cast<json_const_reference_storage>().value()); |
1877 | | case json_storage_kind::json_ref: |
1878 | | return compare(rhs.cast<json_reference_storage>().value()); |
1879 | | default: |
1880 | | return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind()); |
1881 | | } |
1882 | | break; |
1883 | | default: |
1884 | | JSONCONS_UNREACHABLE(); |
1885 | | break; |
1886 | | } |
1887 | | } |
1888 | | |
1889 | | void swap(basic_json& other) noexcept |
1890 | 77.6k | { |
1891 | 77.6k | if (this == &other) |
1892 | 0 | { |
1893 | 0 | return; |
1894 | 0 | } |
1895 | 77.6k | if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind())) |
1896 | 0 | { |
1897 | 0 | basic_json temp; |
1898 | 0 | std::memcpy(static_cast<void*>(&temp), static_cast<void*>(&other), sizeof(basic_json)); |
1899 | 0 | std::memcpy(static_cast<void*>(&other), static_cast<void*>(this), sizeof(basic_json)); |
1900 | 0 | std::memcpy(static_cast<void*>(this), static_cast<void*>(&temp), sizeof(basic_json)); |
1901 | 0 | } |
1902 | 77.6k | else |
1903 | 77.6k | { |
1904 | 77.6k | switch (storage_kind()) |
1905 | 77.6k | { |
1906 | 71.9k | case json_storage_kind::null: swap_l<null_storage>(other); break; |
1907 | 103 | case json_storage_kind::empty_object : swap_l<empty_object_storage>(other); break; |
1908 | 2.84k | case json_storage_kind::boolean: swap_l<bool_storage>(other); break; |
1909 | 1.30k | case json_storage_kind::int64: swap_l<int64_storage>(other); break; |
1910 | 64 | case json_storage_kind::uint64: swap_l<uint64_storage>(other); break; |
1911 | 0 | case json_storage_kind::half_float: swap_l<half_storage>(other); break; |
1912 | 29 | case json_storage_kind::float64: swap_l<double_storage>(other); break; |
1913 | 1.31k | case json_storage_kind::short_str: swap_l<short_string_storage>(other); break; |
1914 | 0 | case json_storage_kind::long_str: swap_l<long_string_storage>(other); break; |
1915 | 0 | case json_storage_kind::byte_str: swap_l<byte_string_storage>(other); break; |
1916 | 0 | case json_storage_kind::array: swap_l<array_storage>(other); break; |
1917 | 0 | case json_storage_kind::object: swap_l<object_storage>(other); break; |
1918 | 0 | case json_storage_kind::json_const_ref: swap_l<json_const_reference_storage>(other); break; |
1919 | 0 | case json_storage_kind::json_ref: swap_l<json_reference_storage>(other); break; |
1920 | 0 | default: |
1921 | 0 | JSONCONS_UNREACHABLE(); |
1922 | 0 | break; |
1923 | 77.6k | } |
1924 | 77.6k | } |
1925 | 77.6k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&) Line | Count | Source | 1890 | 77.6k | { | 1891 | 77.6k | if (this == &other) | 1892 | 0 | { | 1893 | 0 | return; | 1894 | 0 | } | 1895 | 77.6k | if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind())) | 1896 | 0 | { | 1897 | 0 | basic_json temp; | 1898 | 0 | std::memcpy(static_cast<void*>(&temp), static_cast<void*>(&other), sizeof(basic_json)); | 1899 | 0 | std::memcpy(static_cast<void*>(&other), static_cast<void*>(this), sizeof(basic_json)); | 1900 | 0 | std::memcpy(static_cast<void*>(this), static_cast<void*>(&temp), sizeof(basic_json)); | 1901 | 0 | } | 1902 | 77.6k | else | 1903 | 77.6k | { | 1904 | 77.6k | switch (storage_kind()) | 1905 | 77.6k | { | 1906 | 71.9k | case json_storage_kind::null: swap_l<null_storage>(other); break; | 1907 | 103 | case json_storage_kind::empty_object : swap_l<empty_object_storage>(other); break; | 1908 | 2.84k | case json_storage_kind::boolean: swap_l<bool_storage>(other); break; | 1909 | 1.30k | case json_storage_kind::int64: swap_l<int64_storage>(other); break; | 1910 | 64 | case json_storage_kind::uint64: swap_l<uint64_storage>(other); break; | 1911 | 0 | case json_storage_kind::half_float: swap_l<half_storage>(other); break; | 1912 | 29 | case json_storage_kind::float64: swap_l<double_storage>(other); break; | 1913 | 1.31k | case json_storage_kind::short_str: swap_l<short_string_storage>(other); break; | 1914 | 0 | case json_storage_kind::long_str: swap_l<long_string_storage>(other); break; | 1915 | 0 | case json_storage_kind::byte_str: swap_l<byte_string_storage>(other); break; | 1916 | 0 | case json_storage_kind::array: swap_l<array_storage>(other); break; | 1917 | 0 | case json_storage_kind::object: swap_l<object_storage>(other); break; | 1918 | 0 | case json_storage_kind::json_const_ref: swap_l<json_const_reference_storage>(other); break; | 1919 | 0 | case json_storage_kind::json_ref: swap_l<json_reference_storage>(other); break; | 1920 | 0 | default: | 1921 | 0 | JSONCONS_UNREACHABLE(); | 1922 | 0 | break; | 1923 | 77.6k | } | 1924 | 77.6k | } | 1925 | 77.6k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&) |
1926 | | // from string |
1927 | | |
1928 | | template <typename Source> |
1929 | | static |
1930 | | typename std::enable_if<ext_traits::is_sequence_of<Source,char_type>::value,basic_json>::type |
1931 | | parse(const Source& source, |
1932 | | const basic_json_decode_options<char_type>& options = basic_json_options<char_type>()) |
1933 | 0 | { |
1934 | 0 | json_decoder<basic_json> decoder; |
1935 | 0 | basic_json_parser<char_type> parser(options); |
1936 | 0 |
|
1937 | 0 | auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size()); |
1938 | 0 | if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected)) |
1939 | 0 | { |
1940 | 0 | JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column())); |
1941 | 0 | } |
1942 | 0 | std::size_t offset = (r.ptr - source.data()); |
1943 | 0 | parser.update(source.data()+offset,source.size()-offset); |
1944 | 0 | parser.parse_some(decoder); |
1945 | 0 | parser.finish_parse(decoder); |
1946 | 0 | parser.check_done(); |
1947 | 0 | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
1948 | 0 | { |
1949 | 0 | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string")); |
1950 | 0 | } |
1951 | 0 | return decoder.get_result(); |
1952 | 0 | } Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIcNS2_11char_traitsIcEEEEEENS2_9enable_ifIXsr10ext_traits14is_sequence_ofIT_cEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIcEE Unexecuted instantiation: _ZN8jsoncons10basic_jsonIwNS_13sorted_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIwNS2_11char_traitsIwEEEEEENS2_9enable_ifIXsr10ext_traits14is_sequence_ofIT_wEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIwEE Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIcNS2_11char_traitsIcEEEEEENS2_9enable_ifIXsr10ext_traits14is_sequence_ofIT_cEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIcEE Unexecuted instantiation: _ZN8jsoncons10basic_jsonIwNS_23order_preserving_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIwNS2_11char_traitsIwEEEEEENS2_9enable_ifIXsr10ext_traits14is_sequence_ofIT_wEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIwEE |
1953 | | |
1954 | | template <typename Source,typename TempAlloc > |
1955 | | static |
1956 | | typename std::enable_if<ext_traits::is_sequence_of<Source,char_type>::value,basic_json>::type |
1957 | | parse(const allocator_set<allocator_type,TempAlloc>& aset, const Source& source, |
1958 | | const basic_json_decode_options<char_type>& options = basic_json_options<char_type>()) |
1959 | | { |
1960 | | json_decoder<basic_json> decoder(aset.get_allocator(), aset.get_temp_allocator()); |
1961 | | basic_json_parser<char_type,TempAlloc> parser(options, aset.get_temp_allocator()); |
1962 | | |
1963 | | auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size()); |
1964 | | if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected)) |
1965 | | { |
1966 | | JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column())); |
1967 | | } |
1968 | | std::size_t offset = (r.ptr - source.data()); |
1969 | | parser.update(source.data()+offset,source.size()-offset); |
1970 | | parser.parse_some(decoder); |
1971 | | parser.finish_parse(decoder); |
1972 | | parser.check_done(); |
1973 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
1974 | | { |
1975 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string")); |
1976 | | } |
1977 | | return decoder.get_result(); |
1978 | | } |
1979 | | |
1980 | | static basic_json parse(const char_type* str, std::size_t length, |
1981 | | const basic_json_decode_options<char_type>& options = basic_json_options<char_type>()) |
1982 | | { |
1983 | | return parse(jsoncons::string_view(str,length), options); |
1984 | | } |
1985 | | |
1986 | | static basic_json parse(const char_type* source, |
1987 | | const basic_json_decode_options<char_type>& options = basic_json_options<char_type>()) |
1988 | | { |
1989 | | return parse(jsoncons::basic_string_view<char_type>(source), options); |
1990 | | } |
1991 | | |
1992 | | template <typename TempAlloc > |
1993 | | static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, const char_type* source, |
1994 | | const basic_json_decode_options<char_type>& options = basic_json_options<char_type>()) |
1995 | | { |
1996 | | return parse(aset, jsoncons::basic_string_view<char_type>(source), options); |
1997 | | } |
1998 | | |
1999 | | template <typename TempAlloc > |
2000 | | static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, |
2001 | | const char_type* str, std::size_t length, |
2002 | | const basic_json_decode_options<char_type>& options = basic_json_options<char_type>()) |
2003 | | { |
2004 | | return parse(aset, jsoncons::basic_string_view<char_type>(str, length), options); |
2005 | | } |
2006 | | |
2007 | | // from stream |
2008 | | |
2009 | | static basic_json parse(std::basic_istream<char_type>& is, |
2010 | | const basic_json_decode_options<char_type>& options = basic_json_options<CharT>()) |
2011 | | { |
2012 | | json_decoder<basic_json> decoder; |
2013 | | basic_json_reader<char_type,stream_source<char_type>,Allocator> reader(is, decoder, options); |
2014 | | reader.read_next(); |
2015 | | reader.check_done(); |
2016 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2017 | | { |
2018 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json stream")); |
2019 | | } |
2020 | | return decoder.get_result(); |
2021 | | } |
2022 | | |
2023 | | template <typename TempAlloc > |
2024 | | static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, std::basic_istream<char_type>& is, |
2025 | | const basic_json_decode_options<char_type>& options = basic_json_options<CharT>()) |
2026 | | { |
2027 | | json_decoder<basic_json> decoder(aset.get_allocator(), aset.get_temp_allocator()); |
2028 | | basic_json_reader<char_type,stream_source<char_type>,Allocator> reader(is, decoder, options, aset.get_temp_allocator()); |
2029 | | reader.read_next(); |
2030 | | reader.check_done(); |
2031 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2032 | | { |
2033 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json stream")); |
2034 | | } |
2035 | | return decoder.get_result(); |
2036 | | } |
2037 | | |
2038 | | // from iterator |
2039 | | |
2040 | | template <typename InputIt> |
2041 | | static basic_json parse(InputIt first, InputIt last, |
2042 | | const basic_json_decode_options<char_type>& options = basic_json_options<CharT>()) |
2043 | | { |
2044 | | json_decoder<basic_json> decoder; |
2045 | | basic_json_reader<char_type,iterator_source<InputIt>,Allocator> reader(iterator_source<InputIt>(std::forward<InputIt>(first), |
2046 | | std::forward<InputIt>(last)), decoder, options); |
2047 | | reader.read_next(); |
2048 | | reader.check_done(); |
2049 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2050 | | { |
2051 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json from iterator pair")); |
2052 | | } |
2053 | | return decoder.get_result(); |
2054 | | } |
2055 | | |
2056 | | template <typename InputIt,typename TempAlloc > |
2057 | | static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, InputIt first, InputIt last, |
2058 | | const basic_json_decode_options<char_type>& options = basic_json_options<CharT>()) |
2059 | | { |
2060 | | json_decoder<basic_json> decoder(aset.get_allocator(), aset.get_temp_allocator()); |
2061 | | basic_json_reader<char_type,iterator_source<InputIt>,Allocator> reader(iterator_source<InputIt>(std::forward<InputIt>(first), |
2062 | | std::forward<InputIt>(last)), |
2063 | | decoder, options, aset.get_temp_allocator()); |
2064 | | reader.read_next(); |
2065 | | reader.check_done(); |
2066 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2067 | | { |
2068 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json from iterator pair")); |
2069 | | } |
2070 | | return decoder.get_result(); |
2071 | | } |
2072 | | |
2073 | | #if !defined(JSONCONS_NO_DEPRECATED) |
2074 | | |
2075 | | static basic_json parse(const char_type* s, |
2076 | | const basic_json_decode_options<char_type>& options, |
2077 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2078 | | { |
2079 | | return parse(jsoncons::basic_string_view<char_type>(s), options, err_handler); |
2080 | | } |
2081 | | |
2082 | | static basic_json parse(const char_type* s, |
2083 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2084 | | { |
2085 | | return parse(jsoncons::basic_string_view<char_type>(s), basic_json_decode_options<char_type>(), err_handler); |
2086 | | } |
2087 | | |
2088 | | static basic_json parse(std::basic_istream<char_type>& is, |
2089 | | const basic_json_decode_options<char_type>& options, |
2090 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2091 | | { |
2092 | | json_decoder<basic_json> decoder; |
2093 | | basic_json_reader<char_type,stream_source<char_type>> reader(is, decoder, options, err_handler); |
2094 | | reader.read_next(); |
2095 | | reader.check_done(); |
2096 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2097 | | { |
2098 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json stream")); |
2099 | | } |
2100 | | return decoder.get_result(); |
2101 | | } |
2102 | | |
2103 | | static basic_json parse(std::basic_istream<char_type>& is, std::function<bool(json_errc,const ser_context&)> err_handler) |
2104 | | { |
2105 | | return parse(is, basic_json_decode_options<CharT>(), err_handler); |
2106 | | } |
2107 | | |
2108 | | template <typename InputIt> |
2109 | | static basic_json parse(InputIt first, InputIt last, |
2110 | | const basic_json_decode_options<char_type>& options, |
2111 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2112 | | { |
2113 | | json_decoder<basic_json> decoder; |
2114 | | basic_json_reader<char_type,iterator_source<InputIt>> reader(iterator_source<InputIt>(std::forward<InputIt>(first),std::forward<InputIt>(last)), decoder, options, err_handler); |
2115 | | reader.read_next(); |
2116 | | reader.check_done(); |
2117 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2118 | | { |
2119 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json from iterator pair")); |
2120 | | } |
2121 | | return decoder.get_result(); |
2122 | | } |
2123 | | |
2124 | | template <typename Source> |
2125 | | static |
2126 | | typename std::enable_if<ext_traits::is_sequence_of<Source,char_type>::value,basic_json>::type |
2127 | | parse(const Source& source, |
2128 | | const basic_json_decode_options<char_type>& options, |
2129 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2130 | | { |
2131 | | json_decoder<basic_json> decoder; |
2132 | | basic_json_parser<char_type> parser(options,err_handler); |
2133 | | |
2134 | | auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size()); |
2135 | | if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected)) |
2136 | | { |
2137 | | JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column())); |
2138 | | } |
2139 | | std::size_t offset = (r.ptr - source.data()); |
2140 | | parser.update(source.data()+offset,source.size()-offset); |
2141 | | parser.parse_some(decoder); |
2142 | | parser.finish_parse(decoder); |
2143 | | parser.check_done(); |
2144 | | if (JSONCONS_UNLIKELY(!decoder.is_valid())) |
2145 | | { |
2146 | | JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string")); |
2147 | | } |
2148 | | return decoder.get_result(); |
2149 | | } |
2150 | | |
2151 | | template <typename Source> |
2152 | | static |
2153 | | typename std::enable_if<ext_traits::is_sequence_of<Source,char_type>::value,basic_json>::type |
2154 | | parse(const Source& source, |
2155 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2156 | | { |
2157 | | return parse(source, basic_json_decode_options<CharT>(), err_handler); |
2158 | | } |
2159 | | |
2160 | | template <typename InputIt> |
2161 | | static basic_json parse(InputIt first, InputIt last, |
2162 | | std::function<bool(json_errc,const ser_context&)> err_handler) |
2163 | | { |
2164 | | return parse(first, last, basic_json_decode_options<CharT>(), err_handler); |
2165 | | } |
2166 | | #endif |
2167 | | static basic_json make_array() |
2168 | | { |
2169 | | return basic_json(array()); |
2170 | | } |
2171 | | |
2172 | | static basic_json make_array(const array& alloc) |
2173 | | { |
2174 | | return basic_json(alloc); |
2175 | | } |
2176 | | |
2177 | | static basic_json make_array(const array& a, allocator_type alloc) |
2178 | | { |
2179 | | return basic_json(a, semantic_tag::none, alloc); |
2180 | | } |
2181 | | |
2182 | | static basic_json make_array(std::initializer_list<basic_json> init, const Allocator& alloc = Allocator()) |
2183 | | { |
2184 | | return array(std::move(init),alloc); |
2185 | | } |
2186 | | |
2187 | | static basic_json make_array(std::size_t n, const Allocator& alloc = Allocator()) |
2188 | | { |
2189 | | return array(n,alloc); |
2190 | | } |
2191 | | |
2192 | | template <typename T> |
2193 | | static basic_json make_array(std::size_t n, const T& val, const Allocator& alloc = Allocator()) |
2194 | | { |
2195 | | return basic_json::array(n, val,alloc); |
2196 | | } |
2197 | | |
2198 | | template <std::size_t dim> |
2199 | | static typename std::enable_if<dim==1,basic_json>::type make_array(std::size_t n) |
2200 | | { |
2201 | | return array(n); |
2202 | | } |
2203 | | |
2204 | | template <std::size_t dim,typename T> |
2205 | | static typename std::enable_if<dim==1,basic_json>::type make_array(std::size_t n, const T& val, const Allocator& alloc = Allocator()) |
2206 | | { |
2207 | | return array(n,val,alloc); |
2208 | | } |
2209 | | |
2210 | | template <std::size_t dim,typename... Args> |
2211 | | static typename std::enable_if<(dim>1),basic_json>::type make_array(std::size_t n, Args... args) |
2212 | | { |
2213 | | const size_t dim1 = dim - 1; |
2214 | | |
2215 | | basic_json val = make_array<dim1>(std::forward<Args>(args)...); |
2216 | | val.resize(n); |
2217 | | for (std::size_t i = 0; i < n; ++i) |
2218 | | { |
2219 | | val[i] = make_array<dim1>(std::forward<Args>(args)...); |
2220 | | } |
2221 | | return val; |
2222 | | } |
2223 | | |
2224 | | static const basic_json& null() |
2225 | | { |
2226 | | static const basic_json a_null = basic_json(null_arg, semantic_tag::none); |
2227 | | return a_null; |
2228 | | } |
2229 | | |
2230 | | basic_json() |
2231 | 413 | { |
2232 | 413 | construct<empty_object_storage>(semantic_tag::none); |
2233 | 413 | } |
2234 | | |
2235 | | explicit basic_json(const Allocator& alloc) |
2236 | | { |
2237 | | auto ptr = create_object(alloc); |
2238 | | construct<object_storage>(ptr, semantic_tag::none); |
2239 | | } |
2240 | | |
2241 | | basic_json(semantic_tag tag, const Allocator& alloc) |
2242 | | { |
2243 | | auto ptr = create_object(alloc); |
2244 | | construct<object_storage>(ptr, tag); |
2245 | | } |
2246 | | |
2247 | | basic_json(semantic_tag tag) |
2248 | | { |
2249 | | construct<empty_object_storage>(tag); |
2250 | | } |
2251 | | |
2252 | | basic_json(const basic_json& other) |
2253 | | { |
2254 | | uninitialized_copy(other); |
2255 | | } |
2256 | | |
2257 | | basic_json(const basic_json& other, const Allocator& alloc) |
2258 | | { |
2259 | | uninitialized_copy_a(other,alloc); |
2260 | | } |
2261 | | |
2262 | | basic_json(basic_json&& other) noexcept |
2263 | 77.9M | { |
2264 | 77.9M | uninitialized_move(std::move(other)); |
2265 | 77.9M | } |
2266 | | |
2267 | | template <typename U = Allocator> |
2268 | | basic_json(basic_json&& other, const Allocator& alloc) noexcept |
2269 | | { |
2270 | | uninitialized_move_a(typename std::allocator_traits<U>::is_always_equal(), std::move(other), alloc); |
2271 | | } |
2272 | | |
2273 | | explicit basic_json(json_object_arg_t, |
2274 | | semantic_tag tag, |
2275 | | const Allocator& alloc = Allocator()) |
2276 | 4.55M | { |
2277 | 4.55M | auto ptr = create_object(alloc); |
2278 | 4.55M | construct<object_storage>(ptr, tag); |
2279 | 4.55M | } |
2280 | | |
2281 | | explicit basic_json(json_object_arg_t) |
2282 | | { |
2283 | | auto ptr = create_object(Allocator{}); |
2284 | | construct<object_storage>(ptr, semantic_tag::none); |
2285 | | } |
2286 | | |
2287 | | basic_json(json_object_arg_t, const Allocator& alloc) |
2288 | | { |
2289 | | auto ptr = create_object(alloc); |
2290 | | construct<object_storage>(ptr, semantic_tag::none); |
2291 | | } |
2292 | | |
2293 | | template <typename InputIt> |
2294 | | basic_json(json_object_arg_t, |
2295 | | InputIt first, InputIt last, |
2296 | | semantic_tag tag = semantic_tag::none) |
2297 | | { |
2298 | | auto ptr = create_object(Allocator(), first, last); |
2299 | | construct<object_storage>(ptr, tag); |
2300 | | } |
2301 | | |
2302 | | template <typename InputIt> |
2303 | | basic_json(json_object_arg_t, |
2304 | | InputIt first, InputIt last, |
2305 | | semantic_tag tag, |
2306 | | const Allocator& alloc) |
2307 | | { |
2308 | | auto ptr = create_object(alloc, first, last); |
2309 | | construct<object_storage>(ptr, tag); |
2310 | | } |
2311 | | |
2312 | | basic_json(json_object_arg_t, |
2313 | | std::initializer_list<std::pair<std::basic_string<char_type>,basic_json>> init, |
2314 | | semantic_tag tag = semantic_tag::none) |
2315 | | { |
2316 | | auto ptr = create_object(Allocator(), init); |
2317 | | construct<object_storage>(ptr, tag); |
2318 | | } |
2319 | | |
2320 | | basic_json(json_object_arg_t, |
2321 | | std::initializer_list<std::pair<std::basic_string<char_type>,basic_json>> init, |
2322 | | semantic_tag tag, |
2323 | | const Allocator& alloc) |
2324 | | { |
2325 | | auto ptr = create_object(alloc, init); |
2326 | | construct<object_storage>(ptr, tag); |
2327 | | } |
2328 | | |
2329 | | explicit basic_json(json_array_arg_t) |
2330 | | { |
2331 | | auto ptr = create_array(Allocator{}); |
2332 | | construct<array_storage>(ptr, semantic_tag::none); |
2333 | | } |
2334 | | |
2335 | | basic_json(json_array_arg_t, const Allocator& alloc) |
2336 | | { |
2337 | | auto ptr = create_array(alloc); |
2338 | | construct<array_storage>(ptr, semantic_tag::none); |
2339 | | } |
2340 | | |
2341 | | basic_json(json_array_arg_t, std::size_t count, const basic_json& value, |
2342 | | semantic_tag tag = semantic_tag::none) |
2343 | | { |
2344 | | auto ptr = create_array(Allocator(), count, value); |
2345 | | construct<array_storage>(ptr, tag); |
2346 | | } |
2347 | | |
2348 | | basic_json(json_array_arg_t, std::size_t count, const basic_json& value, |
2349 | | semantic_tag tag, const Allocator& alloc) |
2350 | | { |
2351 | | auto ptr = create_array(alloc, count, value); |
2352 | | construct<array_storage>(ptr, tag); |
2353 | | } |
2354 | | |
2355 | | basic_json(json_array_arg_t, |
2356 | | semantic_tag tag) |
2357 | 6.56M | { |
2358 | 6.56M | auto ptr = create_array(Allocator()); |
2359 | 6.56M | construct<array_storage>(ptr, tag); |
2360 | 6.56M | } |
2361 | | |
2362 | | basic_json(json_array_arg_t, |
2363 | | semantic_tag tag, |
2364 | | const Allocator& alloc) |
2365 | | { |
2366 | | auto ptr = create_array(alloc); |
2367 | | construct<array_storage>(ptr, tag); |
2368 | | } |
2369 | | |
2370 | | template <typename InputIt> |
2371 | | basic_json(json_array_arg_t, |
2372 | | InputIt first, InputIt last, |
2373 | | semantic_tag tag = semantic_tag::none) |
2374 | | { |
2375 | | auto ptr = create_array(Allocator(), first, last); |
2376 | | construct<array_storage>(ptr, tag); |
2377 | | } |
2378 | | |
2379 | | template <typename InputIt> |
2380 | | basic_json(json_array_arg_t, |
2381 | | InputIt first, InputIt last, |
2382 | | semantic_tag tag, |
2383 | | const Allocator& alloc) |
2384 | | { |
2385 | | auto ptr = create_array(alloc, first, last); |
2386 | | construct<array_storage>(ptr, tag); |
2387 | | } |
2388 | | |
2389 | | basic_json(json_array_arg_t, |
2390 | | std::initializer_list<basic_json> init, |
2391 | | semantic_tag tag = semantic_tag::none) |
2392 | | { |
2393 | | auto ptr = create_array(Allocator(), init); |
2394 | | construct<array_storage>(ptr, tag); |
2395 | | } |
2396 | | |
2397 | | basic_json(json_array_arg_t, |
2398 | | std::initializer_list<basic_json> init, |
2399 | | semantic_tag tag, |
2400 | | const Allocator& alloc) |
2401 | | { |
2402 | | auto ptr = create_array(alloc, init); |
2403 | | construct<array_storage>(ptr, tag); |
2404 | | } |
2405 | | |
2406 | | basic_json(json_const_pointer_arg_t, const basic_json* ptr) noexcept |
2407 | | { |
2408 | | if (ptr == nullptr) |
2409 | | { |
2410 | | construct<null_storage>(semantic_tag::none); |
2411 | | } |
2412 | | else |
2413 | | { |
2414 | | construct<json_const_reference_storage>(*ptr); |
2415 | | } |
2416 | | } |
2417 | | |
2418 | | basic_json(json_pointer_arg_t, basic_json* ptr) noexcept |
2419 | | { |
2420 | | if (ptr == nullptr) |
2421 | | { |
2422 | | construct<null_storage>(semantic_tag::none); |
2423 | | } |
2424 | | else |
2425 | | { |
2426 | | construct<json_reference_storage>(*ptr); |
2427 | | } |
2428 | | } |
2429 | | |
2430 | | basic_json(const array& val, semantic_tag tag = semantic_tag::none) |
2431 | | { |
2432 | | auto ptr = create_array( |
2433 | | std::allocator_traits<Allocator>::select_on_container_copy_construction(val.get_allocator()), |
2434 | | val); |
2435 | | construct<array_storage>(ptr, tag); |
2436 | | } |
2437 | | |
2438 | | basic_json(array&& val, semantic_tag tag = semantic_tag::none) |
2439 | | { |
2440 | | auto alloc = val.get_allocator(); |
2441 | | auto ptr = create_array(alloc, std::move(val)); |
2442 | | construct<array_storage>(ptr, tag); |
2443 | | } |
2444 | | |
2445 | | basic_json(const object& val, semantic_tag tag = semantic_tag::none) |
2446 | | { |
2447 | | auto ptr = create_object( |
2448 | | std::allocator_traits<Allocator>::select_on_container_copy_construction(val.get_allocator()), |
2449 | | val); |
2450 | | construct<object_storage>(ptr, tag); |
2451 | | } |
2452 | | |
2453 | | basic_json(object&& val, semantic_tag tag = semantic_tag::none) |
2454 | | { |
2455 | | auto alloc = val.get_allocator(); |
2456 | | auto ptr = create_object(alloc, std::move(val)); |
2457 | | construct<object_storage>(ptr, tag); |
2458 | | } |
2459 | | |
2460 | | template <typename T> |
2461 | | basic_json(const T& val) |
2462 | | : basic_json(reflect::json_conv_traits<basic_json,T>::to_json(make_alloc_set(), val)) |
2463 | | { |
2464 | | } |
2465 | | |
2466 | | template <typename T> |
2467 | | basic_json(const T& val, const Allocator& alloc) |
2468 | | : basic_json(reflect::json_conv_traits<basic_json,T>::to_json(make_alloc_set(alloc), val)) |
2469 | | { |
2470 | | } |
2471 | | |
2472 | | template <typename SAlloc> |
2473 | | basic_json(const std::basic_string<char_type,std::char_traits<char_type>,SAlloc>& s, |
2474 | | semantic_tag tag = semantic_tag::none) |
2475 | | : basic_json(s.data(), s.size(), tag, Allocator()) |
2476 | | { |
2477 | | } |
2478 | | |
2479 | | template <typename SAlloc> |
2480 | | basic_json(const std::basic_string<char_type, std::char_traits<char_type>, SAlloc>& s, |
2481 | | const allocator_type& alloc) |
2482 | | : basic_json(s.data(), s.size(), semantic_tag::none, alloc) |
2483 | | { |
2484 | | } |
2485 | | |
2486 | | template <typename SAlloc> |
2487 | | basic_json(const std::basic_string<char_type, std::char_traits<char_type>, SAlloc>& s, |
2488 | | semantic_tag tag, const allocator_type& alloc) |
2489 | | : basic_json(s.data(), s.size(), tag, alloc) |
2490 | | { |
2491 | | } |
2492 | | |
2493 | | basic_json(const string_view_type& s, semantic_tag tag = semantic_tag::none) |
2494 | 3.35M | : basic_json(s.data(), s.size(), tag, allocator_type()) |
2495 | 3.35M | { |
2496 | 3.35M | } |
2497 | | |
2498 | | basic_json(const string_view_type& s, const allocator_type& alloc) |
2499 | | : basic_json(s.data(), s.size(), semantic_tag::none, alloc) |
2500 | | { |
2501 | | } |
2502 | | |
2503 | | basic_json(const char_type* s, semantic_tag tag = semantic_tag::none) |
2504 | | : basic_json(s, char_traits_type::length(s), tag) |
2505 | | { |
2506 | | } |
2507 | | |
2508 | | basic_json(const char_type* s, semantic_tag tag, const allocator_type& alloc) |
2509 | | : basic_json(s, char_traits_type::length(s), tag, alloc) |
2510 | | { |
2511 | | } |
2512 | | |
2513 | | basic_json(const char_type* s, const Allocator& alloc) |
2514 | | : basic_json(s, char_traits_type::length(s), semantic_tag::none, alloc) |
2515 | | { |
2516 | | } |
2517 | | |
2518 | | basic_json(const char_type* s, std::size_t length, semantic_tag tag = semantic_tag::none) |
2519 | | : basic_json(s, length, tag, Allocator()) |
2520 | | { |
2521 | | } |
2522 | | |
2523 | | basic_json(const char_type* s, std::size_t length, semantic_tag tag, const Allocator& alloc) |
2524 | 3.35M | { |
2525 | 3.35M | if (length <= short_string_storage::max_length) |
2526 | 3.35M | { |
2527 | 3.35M | construct<short_string_storage>(s, static_cast<uint8_t>(length), tag); |
2528 | 3.35M | } |
2529 | 1.83k | else |
2530 | 1.83k | { |
2531 | 1.83k | auto ptr = create_long_string(alloc, s, length); |
2532 | 1.83k | construct<long_string_storage>(ptr, tag); |
2533 | 1.83k | } |
2534 | 3.35M | } |
2535 | | |
2536 | | basic_json(half_arg_t, uint16_t val, semantic_tag tag = semantic_tag::none) |
2537 | 0 | { |
2538 | 0 | construct<half_storage>(val, tag); |
2539 | 0 | } |
2540 | | |
2541 | | basic_json(half_arg_t, uint16_t val, semantic_tag tag, const allocator_type&) |
2542 | | { |
2543 | | construct<half_storage>(val, tag); |
2544 | | } |
2545 | | |
2546 | | basic_json(double val, semantic_tag tag) |
2547 | 173k | { |
2548 | 173k | construct<double_storage>(val, tag); |
2549 | 173k | } |
2550 | | |
2551 | | basic_json(double val, semantic_tag tag, const allocator_type&) |
2552 | | { |
2553 | | construct<double_storage>(val, tag); |
2554 | | } |
2555 | | |
2556 | | template <typename IntegerType> |
2557 | | basic_json(IntegerType val, semantic_tag tag, |
2558 | | typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(uint64_t), int>::type = 0) |
2559 | 2.47M | { |
2560 | 2.47M | construct<uint64_storage>(val, tag); |
2561 | 2.47M | } |
2562 | | |
2563 | | template <typename IntegerType> |
2564 | | basic_json(IntegerType val, semantic_tag tag, Allocator, |
2565 | | typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(uint64_t), int>::type = 0) |
2566 | | { |
2567 | | construct<uint64_storage>(val, tag); |
2568 | | } |
2569 | | |
2570 | | template <typename IntegerType> |
2571 | | basic_json(IntegerType val, semantic_tag, const Allocator& alloc = Allocator(), |
2572 | | typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(uint64_t) < sizeof(IntegerType), int>::type = 0) |
2573 | | { |
2574 | | std::basic_string<CharT> s; |
2575 | | jsoncons::utility::from_integer(val, s); |
2576 | | if (s.length() <= short_string_storage::max_length) |
2577 | | { |
2578 | | construct<short_string_storage>(s.data(), static_cast<uint8_t>(s.length()), semantic_tag::bigint); |
2579 | | } |
2580 | | else |
2581 | | { |
2582 | | auto ptr = create_long_string(alloc, s.data(), s.length()); |
2583 | | construct<long_string_storage>(ptr, semantic_tag::bigint); |
2584 | | } |
2585 | | } |
2586 | | |
2587 | | template <typename IntegerType> |
2588 | | basic_json(IntegerType val, semantic_tag tag, |
2589 | | typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(int64_t),int>::type = 0) |
2590 | 2.58M | { |
2591 | 2.58M | construct<int64_storage>(val, tag); |
2592 | 2.58M | } |
2593 | | |
2594 | | template <typename IntegerType> |
2595 | | basic_json(IntegerType val, semantic_tag tag, Allocator, |
2596 | | typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(int64_t),int>::type = 0) |
2597 | | { |
2598 | | construct<int64_storage>(val, tag); |
2599 | | } |
2600 | | |
2601 | | template <typename IntegerType> |
2602 | | basic_json(IntegerType val, semantic_tag, |
2603 | | typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(int64_t) < sizeof(IntegerType),int>::type = 0) |
2604 | | { |
2605 | | std::basic_string<CharT> s; |
2606 | | jsoncons::utility::from_integer(val, s); |
2607 | | if (s.length() <= short_string_storage::max_length) |
2608 | | { |
2609 | | construct<short_string_storage>(s.data(), static_cast<uint8_t>(s.length()), semantic_tag::bigint); |
2610 | | } |
2611 | | else |
2612 | | { |
2613 | | auto ptr = create_long_string(Allocator(), s.data(), s.length()); |
2614 | | construct<long_string_storage>(ptr, semantic_tag::bigint); |
2615 | | } |
2616 | | } |
2617 | | |
2618 | | template <typename IntegerType> |
2619 | | basic_json(IntegerType val, semantic_tag, const Allocator& alloc, |
2620 | | typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(int64_t) < sizeof(IntegerType),int>::type = 0) |
2621 | | { |
2622 | | std::basic_string<CharT> s; |
2623 | | jsoncons::utility::from_integer(val, s); |
2624 | | if (s.length() <= short_string_storage::max_length) |
2625 | | { |
2626 | | construct<short_string_storage>(s.data(), static_cast<uint8_t>(s.length()), semantic_tag::bigint); |
2627 | | } |
2628 | | else |
2629 | | { |
2630 | | auto ptr = create_long_string(alloc, s.data(), s.length()); |
2631 | | construct<long_string_storage>(ptr, semantic_tag::bigint); |
2632 | | } |
2633 | | } |
2634 | | |
2635 | | basic_json(null_type, semantic_tag tag) |
2636 | 11.4M | { |
2637 | 11.4M | construct<null_storage>(tag); |
2638 | 11.4M | } |
2639 | | |
2640 | | basic_json(null_type, semantic_tag tag, const Allocator&) |
2641 | | { |
2642 | | construct<null_storage>(tag); |
2643 | | } |
2644 | | |
2645 | | basic_json(bool val, semantic_tag tag) |
2646 | 2.23M | { |
2647 | 2.23M | construct<bool_storage>(val,tag); |
2648 | 2.23M | } |
2649 | | |
2650 | | basic_json(bool val, semantic_tag tag, const Allocator&) |
2651 | | { |
2652 | | construct<bool_storage>(val,tag); |
2653 | | } |
2654 | | |
2655 | | basic_json(const string_view_type& sv, semantic_tag tag, const allocator_type& alloc) |
2656 | 10 | : basic_json(sv.data(), sv.length(), tag, alloc) |
2657 | 10 | { |
2658 | 10 | } |
2659 | | |
2660 | | template <typename Source> |
2661 | | basic_json(byte_string_arg_t, const Source& source, |
2662 | | semantic_tag tag = semantic_tag::none, |
2663 | | typename std::enable_if<ext_traits::is_byte_sequence<Source>::value,int>::type = 0) |
2664 | 0 | { |
2665 | 0 | auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size()); |
2666 | | |
2667 | 0 | auto ptr = create_byte_string(Allocator(), bytes.data(), bytes.size(), 0); |
2668 | 0 | construct<byte_string_storage>(ptr, tag); |
2669 | 0 | } |
2670 | | |
2671 | | template <typename Source> |
2672 | | basic_json(byte_string_arg_t, const Source& source, |
2673 | | semantic_tag tag, |
2674 | | const Allocator& alloc, |
2675 | | typename std::enable_if<ext_traits::is_byte_sequence<Source>::value,int>::type = 0) |
2676 | 0 | { |
2677 | 0 | auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size()); |
2678 | |
|
2679 | 0 | auto ptr = create_byte_string(alloc, bytes.data(), bytes.size(), 0); |
2680 | 0 | construct<byte_string_storage>(ptr, tag); |
2681 | 0 | } |
2682 | | |
2683 | | template <typename Source> |
2684 | | basic_json(byte_string_arg_t, const Source& source, |
2685 | | uint64_t ext_tag, |
2686 | | typename std::enable_if<ext_traits::is_byte_sequence<Source>::value,int>::type = 0) |
2687 | 0 | { |
2688 | 0 | auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size()); |
2689 | |
|
2690 | 0 | auto ptr = create_byte_string(Allocator(), bytes.data(), bytes.size(), ext_tag); |
2691 | 0 | construct<byte_string_storage>(ptr, semantic_tag::ext); |
2692 | 0 | } |
2693 | | |
2694 | | template <typename Source> |
2695 | | basic_json(byte_string_arg_t, const Source& source, |
2696 | | uint64_t ext_tag, |
2697 | | const Allocator& alloc, |
2698 | | typename std::enable_if<ext_traits::is_byte_sequence<Source>::value,int>::type = 0) |
2699 | 0 | { |
2700 | 0 | auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size()); |
2701 | |
|
2702 | 0 | auto ptr = create_byte_string(alloc, bytes.data(), bytes.size(), ext_tag); |
2703 | 0 | construct<byte_string_storage>(ptr, semantic_tag::ext); |
2704 | 0 | } |
2705 | | |
2706 | | template <typename InputIterator> |
2707 | | basic_json(InputIterator first, InputIterator last) |
2708 | | : basic_json(json_array_arg,first,last,Allocator()) |
2709 | | { |
2710 | | } |
2711 | | |
2712 | | template <typename InputIterator> |
2713 | | basic_json(InputIterator first, InputIterator last, const Allocator& alloc) |
2714 | | : basic_json(json_array_arg,first,last,alloc) |
2715 | | { |
2716 | | } |
2717 | | |
2718 | | ~basic_json() noexcept |
2719 | 111M | { |
2720 | 111M | destroy(); |
2721 | 111M | } |
2722 | | |
2723 | | template <typename T> |
2724 | | basic_json& operator=(const T& val) |
2725 | | { |
2726 | | *this = reflect::json_conv_traits<basic_json,T>::to_json(make_alloc_set(), val); |
2727 | | return *this; |
2728 | | } |
2729 | | |
2730 | | basic_json& operator=(const char_type* s) |
2731 | | { |
2732 | | *this = basic_json(s, char_traits_type::length(s), semantic_tag::none); |
2733 | | return *this; |
2734 | | } |
2735 | | |
2736 | | basic_json& operator[](std::size_t i) |
2737 | | { |
2738 | | return at(i); |
2739 | | } |
2740 | | |
2741 | | const basic_json& operator[](std::size_t i) const |
2742 | | { |
2743 | | return at(i); |
2744 | | } |
2745 | | |
2746 | | basic_json& operator[](const string_view_type& key) |
2747 | | { |
2748 | | switch (storage_kind()) |
2749 | | { |
2750 | | case json_storage_kind::empty_object: |
2751 | | return try_emplace(key, basic_json{}).first->value(); |
2752 | | case json_storage_kind::object: |
2753 | | { |
2754 | | auto it = cast<object_storage>().value().find(key); |
2755 | | if (it == cast<object_storage>().value().end()) |
2756 | | { |
2757 | | return try_emplace(key, basic_json{}).first->value(); |
2758 | | } |
2759 | | else |
2760 | | { |
2761 | | return (*it).value(); |
2762 | | } |
2763 | | break; |
2764 | | } |
2765 | | case json_storage_kind::json_ref: |
2766 | | return cast<json_reference_storage>().value()[key]; |
2767 | | default: |
2768 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
2769 | | } |
2770 | | } |
2771 | | |
2772 | | const basic_json& operator[](const string_view_type& key) const |
2773 | | { |
2774 | | static const basic_json an_empty_object = basic_json(); |
2775 | | |
2776 | | switch (storage_kind()) |
2777 | | { |
2778 | | case json_storage_kind::empty_object: |
2779 | | return an_empty_object; |
2780 | | case json_storage_kind::object: |
2781 | | { |
2782 | | auto it = cast<object_storage>().value().find(key); |
2783 | | if (it == cast<object_storage>().value().end()) |
2784 | | { |
2785 | | return an_empty_object; |
2786 | | } |
2787 | | else |
2788 | | { |
2789 | | return (*it).value(); |
2790 | | } |
2791 | | break; |
2792 | | } |
2793 | | case json_storage_kind::json_const_ref: |
2794 | | return cast<json_const_reference_storage>().value().at(key); |
2795 | | case json_storage_kind::json_ref: |
2796 | | return cast<json_reference_storage>().value()[key]; |
2797 | | default: |
2798 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
2799 | | } |
2800 | | } |
2801 | | |
2802 | | template <typename CharContainer> |
2803 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2804 | | dump(CharContainer& cont, |
2805 | | const basic_json_encode_options<char_type>& options = basic_json_options<CharT>(), |
2806 | | indenting indent = indenting::no_indent) const |
2807 | | { |
2808 | | std::error_code ec; |
2809 | | dump(cont, options, indent, ec); |
2810 | | if (JSONCONS_UNLIKELY(ec)) |
2811 | | { |
2812 | | JSONCONS_THROW(ser_error(ec)); |
2813 | | } |
2814 | | } |
2815 | | |
2816 | | template <typename CharContainer> |
2817 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2818 | | dump_pretty(CharContainer& cont, |
2819 | | const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const |
2820 | | { |
2821 | | std::error_code ec; |
2822 | | dump_pretty(cont, options, ec); |
2823 | | if (JSONCONS_UNLIKELY(ec)) |
2824 | | { |
2825 | | JSONCONS_THROW(ser_error(ec)); |
2826 | | } |
2827 | | } |
2828 | | |
2829 | | void dump(std::basic_ostream<char_type>& os, |
2830 | | const basic_json_encode_options<char_type>& options = basic_json_options<CharT>(), |
2831 | | indenting indent = indenting::no_indent) const |
2832 | | { |
2833 | | std::error_code ec; |
2834 | | dump(os, options, indent, ec); |
2835 | | if (JSONCONS_UNLIKELY(ec)) |
2836 | | { |
2837 | | JSONCONS_THROW(ser_error(ec)); |
2838 | | } |
2839 | | } |
2840 | | |
2841 | | template <typename CharContainer> |
2842 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2843 | | dump_pretty(CharContainer& cont, |
2844 | | const basic_json_encode_options<char_type>& options, |
2845 | | std::error_code& ec) const |
2846 | | { |
2847 | | basic_json_encoder<char_type,jsoncons::string_sink<CharContainer>> encoder(cont, options); |
2848 | | dump(encoder, ec); |
2849 | | } |
2850 | | |
2851 | | template <typename CharContainer> |
2852 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2853 | | dump_pretty(CharContainer& cont, |
2854 | | std::error_code& ec) const |
2855 | | { |
2856 | | dump_pretty(cont, basic_json_encode_options<char_type>(), ec); |
2857 | | } |
2858 | | |
2859 | | void dump_pretty(std::basic_ostream<char_type>& os, |
2860 | | const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const |
2861 | | { |
2862 | | std::error_code ec; |
2863 | | dump_pretty(os, options, ec); |
2864 | | if (JSONCONS_UNLIKELY(ec)) |
2865 | | { |
2866 | | JSONCONS_THROW(ser_error(ec)); |
2867 | | } |
2868 | | } |
2869 | | |
2870 | | void dump_pretty(std::basic_ostream<char_type>& os, |
2871 | | const basic_json_encode_options<char_type>& options, |
2872 | | std::error_code& ec) const |
2873 | | { |
2874 | | basic_json_encoder<char_type> encoder(os, options); |
2875 | | dump(encoder, ec); |
2876 | | } |
2877 | | |
2878 | | void dump_pretty(std::basic_ostream<char_type>& os, |
2879 | | std::error_code& ec) const |
2880 | | { |
2881 | | dump_pretty(os, basic_json_encode_options<char_type>(), ec); |
2882 | | } |
2883 | | |
2884 | | template <typename CharContainer> |
2885 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2886 | | dump(CharContainer& cont, indenting indent) const |
2887 | | { |
2888 | | std::error_code ec; |
2889 | | |
2890 | | dump(cont, indent, ec); |
2891 | | if (JSONCONS_UNLIKELY(ec)) |
2892 | | { |
2893 | | JSONCONS_THROW(ser_error(ec)); |
2894 | | } |
2895 | | } |
2896 | | |
2897 | | void dump(std::basic_ostream<char_type>& os, |
2898 | | indenting indent) const |
2899 | | { |
2900 | | std::error_code ec; |
2901 | | |
2902 | | dump(os, indent, ec); |
2903 | | if (JSONCONS_UNLIKELY(ec)) |
2904 | | { |
2905 | | JSONCONS_THROW(ser_error(ec)); |
2906 | | } |
2907 | | } |
2908 | | |
2909 | | void dump(basic_json_visitor<char_type>& visitor) const |
2910 | | { |
2911 | | std::error_code ec; |
2912 | | dump(visitor, ec); |
2913 | | if (JSONCONS_UNLIKELY(ec)) |
2914 | | { |
2915 | | JSONCONS_THROW(ser_error(ec)); |
2916 | | } |
2917 | | } |
2918 | | |
2919 | | // dump |
2920 | | template <typename CharContainer> |
2921 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2922 | | dump(CharContainer& cont, |
2923 | | const basic_json_encode_options<char_type>& options, |
2924 | | std::error_code& ec) const |
2925 | | { |
2926 | | basic_compact_json_encoder<char_type,jsoncons::string_sink<CharContainer>> encoder(cont, options); |
2927 | | dump(encoder, ec); |
2928 | | } |
2929 | | |
2930 | | template <typename CharContainer> |
2931 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2932 | | dump(CharContainer& cont, std::error_code& ec) const |
2933 | | { |
2934 | | basic_compact_json_encoder<char_type,jsoncons::string_sink<CharContainer>> encoder(cont); |
2935 | | dump(encoder, ec); |
2936 | | } |
2937 | | |
2938 | | void dump(std::basic_ostream<char_type>& os, |
2939 | | const basic_json_encode_options<char_type>& options, |
2940 | | std::error_code& ec) const |
2941 | | { |
2942 | | basic_compact_json_encoder<char_type> encoder(os, options); |
2943 | | dump(encoder, ec); |
2944 | | } |
2945 | | |
2946 | | void dump(std::basic_ostream<char_type>& os, |
2947 | | std::error_code& ec) const |
2948 | | { |
2949 | | basic_compact_json_encoder<char_type> encoder(os); |
2950 | | dump(encoder, ec); |
2951 | | } |
2952 | | |
2953 | | // legacy |
2954 | | template <typename CharContainer> |
2955 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2956 | | dump(CharContainer& cont, |
2957 | | const basic_json_encode_options<char_type>& options, |
2958 | | indenting indent, |
2959 | | std::error_code& ec) const |
2960 | | { |
2961 | | if (indent == indenting::indent) |
2962 | | { |
2963 | | dump_pretty(cont, options, ec); |
2964 | | } |
2965 | | else |
2966 | | { |
2967 | | dump(cont, options, ec); |
2968 | | } |
2969 | | } |
2970 | | |
2971 | | template <typename CharContainer> |
2972 | | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
2973 | | dump(CharContainer& cont, |
2974 | | indenting indent, |
2975 | | std::error_code& ec) const |
2976 | | { |
2977 | | if (indent == indenting::indent) |
2978 | | { |
2979 | | dump_pretty(cont, ec); |
2980 | | } |
2981 | | else |
2982 | | { |
2983 | | dump(cont, ec); |
2984 | | } |
2985 | | } |
2986 | | |
2987 | | void dump(std::basic_ostream<char_type>& os, |
2988 | | const basic_json_encode_options<char_type>& options, |
2989 | | indenting indent, |
2990 | | std::error_code& ec) const |
2991 | | { |
2992 | | if (indent == indenting::indent) |
2993 | | { |
2994 | | dump_pretty(os, options, ec); |
2995 | | } |
2996 | | else |
2997 | | { |
2998 | | dump(os, options, ec); |
2999 | | } |
3000 | | } |
3001 | | |
3002 | | void dump(std::basic_ostream<char_type>& os, |
3003 | | indenting indent, |
3004 | | std::error_code& ec) const |
3005 | | { |
3006 | | if (indent == indenting::indent) |
3007 | | { |
3008 | | dump_pretty(os, ec); |
3009 | | } |
3010 | | else |
3011 | | { |
3012 | | dump(os, ec); |
3013 | | } |
3014 | | } |
3015 | | // end legacy |
3016 | | |
3017 | | void dump(basic_json_visitor<char_type>& visitor, |
3018 | | std::error_code& ec) const |
3019 | | { |
3020 | | dump_noflush(visitor, ec); |
3021 | | if (JSONCONS_UNLIKELY(ec)) |
3022 | | { |
3023 | | return; |
3024 | | } |
3025 | | visitor.flush(); |
3026 | | } |
3027 | | |
3028 | | write_result try_dump(basic_json_visitor<char_type>& visitor) const |
3029 | | { |
3030 | | auto r = try_dump_noflush(visitor); |
3031 | | visitor.flush(); |
3032 | | return r; |
3033 | | } |
3034 | | |
3035 | | bool is_null() const noexcept |
3036 | | { |
3037 | | switch (storage_kind()) |
3038 | | { |
3039 | | case json_storage_kind::null: |
3040 | | return true; |
3041 | | case json_storage_kind::json_const_ref: |
3042 | | return cast<json_const_reference_storage>().value().is_null(); |
3043 | | case json_storage_kind::json_ref: |
3044 | | return cast<json_reference_storage>().value().is_null(); |
3045 | | default: |
3046 | | return false; |
3047 | | } |
3048 | | } |
3049 | | |
3050 | | allocator_type get_default_allocator(std::false_type) const |
3051 | | { |
3052 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("No default allocator if allocator is not default constructible.")); |
3053 | | } |
3054 | | |
3055 | | allocator_type get_default_allocator(std::true_type) const |
3056 | | { |
3057 | | return allocator_type{}; |
3058 | | } |
3059 | | |
3060 | | template <typename U=Allocator> |
3061 | | allocator_type get_allocator() const |
3062 | | { |
3063 | | switch (storage_kind()) |
3064 | | { |
3065 | | case json_storage_kind::long_str: |
3066 | | return cast<long_string_storage>().get_allocator(); |
3067 | | case json_storage_kind::byte_str: |
3068 | | return cast<byte_string_storage>().get_allocator(); |
3069 | | case json_storage_kind::array: |
3070 | | return cast<array_storage>().get_allocator(); |
3071 | | case json_storage_kind::object: |
3072 | | return cast<object_storage>().get_allocator(); |
3073 | | case json_storage_kind::json_ref: |
3074 | | return cast<json_reference_storage>().value().get_allocator(); |
3075 | | default: |
3076 | | return get_default_allocator(typename std::allocator_traits<U>::is_always_equal()); |
3077 | | } |
3078 | | } |
3079 | | |
3080 | | uint64_t ext_tag() const |
3081 | | { |
3082 | | switch (storage_kind()) |
3083 | | { |
3084 | | case json_storage_kind::byte_str: |
3085 | | { |
3086 | | return cast<byte_string_storage>().ext_tag(); |
3087 | | } |
3088 | | case json_storage_kind::json_const_ref: |
3089 | | return cast<json_const_reference_storage>().value().ext_tag(); |
3090 | | case json_storage_kind::json_ref: |
3091 | | return cast<json_reference_storage>().value().ext_tag(); |
3092 | | default: |
3093 | | return 0; |
3094 | | } |
3095 | | } |
3096 | | |
3097 | | bool contains(const string_view_type& key) const noexcept |
3098 | | { |
3099 | | switch (storage_kind()) |
3100 | | { |
3101 | | case json_storage_kind::object: |
3102 | | { |
3103 | | auto it = cast<object_storage>().value().find(key); |
3104 | | return it != cast<object_storage>().value().end(); |
3105 | | } |
3106 | | case json_storage_kind::json_const_ref: |
3107 | | return cast<json_const_reference_storage>().value().contains(key); |
3108 | | case json_storage_kind::json_ref: |
3109 | | return cast<json_reference_storage>().value().contains(key); |
3110 | | default: |
3111 | | return false; |
3112 | | } |
3113 | | } |
3114 | | |
3115 | | std::size_t count(const string_view_type& key) const |
3116 | | { |
3117 | | switch (storage_kind()) |
3118 | | { |
3119 | | case json_storage_kind::object: |
3120 | | { |
3121 | | auto it = cast<object_storage>().value().find(key); |
3122 | | if (it == cast<object_storage>().value().end()) |
3123 | | { |
3124 | | return 0; |
3125 | | } |
3126 | | std::size_t count = 0; |
3127 | | while (it != cast<object_storage>().value().end()&& (*it).key() == key) |
3128 | | { |
3129 | | ++count; |
3130 | | ++it; |
3131 | | } |
3132 | | return count; |
3133 | | } |
3134 | | case json_storage_kind::json_const_ref: |
3135 | | return cast<json_const_reference_storage>().value().count(key); |
3136 | | case json_storage_kind::json_ref: |
3137 | | return cast<json_reference_storage>().value().count(key); |
3138 | | default: |
3139 | | return 0; |
3140 | | } |
3141 | | } |
3142 | | |
3143 | | template <typename T,typename... Args> |
3144 | | bool is(Args&&... args) const noexcept |
3145 | | { |
3146 | | return reflect::json_conv_traits<basic_json,T>::is(*this,std::forward<Args>(args)...); |
3147 | | } |
3148 | | |
3149 | | bool is_string() const noexcept |
3150 | | { |
3151 | | if (is_string_storage(storage_kind())) |
3152 | | { |
3153 | | return true; |
3154 | | } |
3155 | | if (storage_kind() == json_storage_kind::json_const_ref) |
3156 | | { |
3157 | | return cast<json_const_reference_storage>().value().is_string(); |
3158 | | } |
3159 | | if (storage_kind() == json_storage_kind::json_ref) |
3160 | | { |
3161 | | return cast<json_const_reference_storage>().value().is_string(); |
3162 | | } |
3163 | | return false; |
3164 | | } |
3165 | | |
3166 | | bool is_string_view() const noexcept |
3167 | | { |
3168 | | return is_string(); |
3169 | | } |
3170 | | |
3171 | | bool is_byte_string() const noexcept |
3172 | | { |
3173 | | switch (storage_kind()) |
3174 | | { |
3175 | | case json_storage_kind::byte_str: |
3176 | | return true; |
3177 | | case json_storage_kind::json_const_ref: |
3178 | | return cast<json_const_reference_storage>().value().is_byte_string(); |
3179 | | case json_storage_kind::json_ref: |
3180 | | return cast<json_reference_storage>().value().is_byte_string(); |
3181 | | default: |
3182 | | return false; |
3183 | | } |
3184 | | } |
3185 | | |
3186 | | bool is_byte_string_view() const noexcept |
3187 | | { |
3188 | | return is_byte_string(); |
3189 | | } |
3190 | | |
3191 | | bool is_bignum() const |
3192 | | { |
3193 | | switch (storage_kind()) |
3194 | | { |
3195 | | case json_storage_kind::short_str: |
3196 | | case json_storage_kind::long_str: |
3197 | | return jsoncons::utility::is_base10(as_string_view().data(), as_string_view().length()); |
3198 | | case json_storage_kind::int64: |
3199 | | case json_storage_kind::uint64: |
3200 | | return true; |
3201 | | case json_storage_kind::json_ref: |
3202 | | return cast<json_reference_storage>().value().is_bignum(); |
3203 | | default: |
3204 | | return false; |
3205 | | } |
3206 | | } |
3207 | | |
3208 | | bool is_bool() const noexcept |
3209 | | { |
3210 | | switch (storage_kind()) |
3211 | | { |
3212 | | case json_storage_kind::boolean: |
3213 | | return true; |
3214 | | case json_storage_kind::json_const_ref: |
3215 | | return cast<json_const_reference_storage>().value().is_bool(); |
3216 | | case json_storage_kind::json_ref: |
3217 | | return cast<json_reference_storage>().value().is_bool(); |
3218 | | default: |
3219 | | return false; |
3220 | | } |
3221 | | } |
3222 | | |
3223 | | bool is_object() const noexcept |
3224 | | { |
3225 | | switch (storage_kind()) |
3226 | | { |
3227 | | case json_storage_kind::empty_object: |
3228 | | case json_storage_kind::object: |
3229 | | return true; |
3230 | | case json_storage_kind::json_const_ref: |
3231 | | return cast<json_const_reference_storage>().value().is_object(); |
3232 | | case json_storage_kind::json_ref: |
3233 | | return cast<json_reference_storage>().value().is_object(); |
3234 | | default: |
3235 | | return false; |
3236 | | } |
3237 | | } |
3238 | | |
3239 | | bool is_array() const noexcept |
3240 | | { |
3241 | | switch (storage_kind()) |
3242 | | { |
3243 | | case json_storage_kind::array: |
3244 | | return true; |
3245 | | case json_storage_kind::json_const_ref: |
3246 | | return cast<json_const_reference_storage>().value().is_array(); |
3247 | | case json_storage_kind::json_ref: |
3248 | | return cast<json_reference_storage>().value().is_array(); |
3249 | | default: |
3250 | | return false; |
3251 | | } |
3252 | | } |
3253 | | |
3254 | | bool is_int64() const noexcept |
3255 | | { |
3256 | | switch (storage_kind()) |
3257 | | { |
3258 | | case json_storage_kind::int64: |
3259 | | return true; |
3260 | | case json_storage_kind::uint64: |
3261 | | return as_integer<uint64_t>() <= static_cast<uint64_t>((std::numeric_limits<int64_t>::max)()); |
3262 | | case json_storage_kind::json_const_ref: |
3263 | | return cast<json_const_reference_storage>().value().is_int64(); |
3264 | | case json_storage_kind::json_ref: |
3265 | | return cast<json_reference_storage>().value().is_int64(); |
3266 | | default: |
3267 | | return false; |
3268 | | } |
3269 | | } |
3270 | | |
3271 | | bool is_uint64() const noexcept |
3272 | | { |
3273 | | switch (storage_kind()) |
3274 | | { |
3275 | | case json_storage_kind::uint64: |
3276 | | return true; |
3277 | | case json_storage_kind::int64: |
3278 | | return as_integer<int64_t>() >= 0; |
3279 | | case json_storage_kind::json_const_ref: |
3280 | | return cast<json_const_reference_storage>().value().is_uint64(); |
3281 | | case json_storage_kind::json_ref: |
3282 | | return cast<json_reference_storage>().value().is_uint64(); |
3283 | | default: |
3284 | | return false; |
3285 | | } |
3286 | | } |
3287 | | |
3288 | | bool is_half() const noexcept |
3289 | | { |
3290 | | switch (storage_kind()) |
3291 | | { |
3292 | | case json_storage_kind::half_float: |
3293 | | return true; |
3294 | | case json_storage_kind::json_const_ref: |
3295 | | return cast<json_const_reference_storage>().value().is_half(); |
3296 | | case json_storage_kind::json_ref: |
3297 | | return cast<json_reference_storage>().value().is_half(); |
3298 | | default: |
3299 | | return false; |
3300 | | } |
3301 | | } |
3302 | | |
3303 | | bool is_double() const noexcept |
3304 | | { |
3305 | | switch (storage_kind()) |
3306 | | { |
3307 | | case json_storage_kind::float64: |
3308 | | return true; |
3309 | | case json_storage_kind::json_const_ref: |
3310 | | return cast<json_const_reference_storage>().value().is_double(); |
3311 | | case json_storage_kind::json_ref: |
3312 | | return cast<json_reference_storage>().value().is_double(); |
3313 | | default: |
3314 | | return false; |
3315 | | } |
3316 | | } |
3317 | | |
3318 | | bool is_number() const noexcept |
3319 | | { |
3320 | | switch (storage_kind()) |
3321 | | { |
3322 | | case json_storage_kind::int64: |
3323 | | case json_storage_kind::uint64: |
3324 | | case json_storage_kind::half_float: |
3325 | | case json_storage_kind::float64: |
3326 | | return true; |
3327 | | case json_storage_kind::short_str: |
3328 | | case json_storage_kind::long_str: |
3329 | | return tag() == semantic_tag::bigint || |
3330 | | tag() == semantic_tag::bigdec || |
3331 | | tag() == semantic_tag::bigfloat; |
3332 | | case json_storage_kind::json_const_ref: |
3333 | | return cast<json_const_reference_storage>().value().is_number(); |
3334 | | case json_storage_kind::json_ref: |
3335 | | return cast<json_reference_storage>().value().is_number(); |
3336 | | default: |
3337 | | return false; |
3338 | | } |
3339 | | } |
3340 | | |
3341 | | bool empty() const noexcept |
3342 | 40.2k | { |
3343 | 40.2k | switch (storage_kind()) |
3344 | 40.2k | { |
3345 | 0 | case json_storage_kind::byte_str: |
3346 | 0 | return cast<byte_string_storage>().length() == 0; |
3347 | 0 | break; |
3348 | 0 | case json_storage_kind::short_str: |
3349 | 0 | return cast<short_string_storage>().length() == 0; |
3350 | 0 | case json_storage_kind::long_str: |
3351 | 0 | return cast<long_string_storage>().length() == 0; |
3352 | 36.8k | case json_storage_kind::array: |
3353 | 36.8k | return cast<array_storage>().value().empty(); |
3354 | 0 | case json_storage_kind::empty_object: |
3355 | 0 | return true; |
3356 | 3.47k | case json_storage_kind::object: |
3357 | 3.47k | return cast<object_storage>().value().empty(); |
3358 | 0 | case json_storage_kind::json_const_ref: |
3359 | 0 | return cast<json_const_reference_storage>().value().empty(); |
3360 | 0 | case json_storage_kind::json_ref: |
3361 | 0 | return cast<json_reference_storage>().value().empty(); |
3362 | 0 | default: |
3363 | 0 | return false; |
3364 | 40.2k | } |
3365 | 40.2k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty() const Line | Count | Source | 3342 | 40.2k | { | 3343 | 40.2k | switch (storage_kind()) | 3344 | 40.2k | { | 3345 | 0 | case json_storage_kind::byte_str: | 3346 | 0 | return cast<byte_string_storage>().length() == 0; | 3347 | 0 | break; | 3348 | 0 | case json_storage_kind::short_str: | 3349 | 0 | return cast<short_string_storage>().length() == 0; | 3350 | 0 | case json_storage_kind::long_str: | 3351 | 0 | return cast<long_string_storage>().length() == 0; | 3352 | 36.8k | case json_storage_kind::array: | 3353 | 36.8k | return cast<array_storage>().value().empty(); | 3354 | 0 | case json_storage_kind::empty_object: | 3355 | 0 | return true; | 3356 | 3.47k | case json_storage_kind::object: | 3357 | 3.47k | return cast<object_storage>().value().empty(); | 3358 | 0 | case json_storage_kind::json_const_ref: | 3359 | 0 | return cast<json_const_reference_storage>().value().empty(); | 3360 | 0 | case json_storage_kind::json_ref: | 3361 | 0 | return cast<json_reference_storage>().value().empty(); | 3362 | 0 | default: | 3363 | 0 | return false; | 3364 | 40.2k | } | 3365 | 40.2k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty() const Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty() const Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty() const |
3366 | | |
3367 | | std::size_t capacity() const |
3368 | | { |
3369 | | switch (storage_kind()) |
3370 | | { |
3371 | | case json_storage_kind::array: |
3372 | | return cast<array_storage>().value().capacity(); |
3373 | | case json_storage_kind::object: |
3374 | | return cast<object_storage>().value().capacity(); |
3375 | | case json_storage_kind::json_const_ref: |
3376 | | return cast<json_const_reference_storage>().value().capacity(); |
3377 | | case json_storage_kind::json_ref: |
3378 | | return cast<json_reference_storage>().value().capacity(); |
3379 | | default: |
3380 | | return 0; |
3381 | | } |
3382 | | } |
3383 | | |
3384 | | template <typename U=Allocator> |
3385 | | void create_object_implicitly() |
3386 | 0 | { |
3387 | 0 | create_object_implicitly(typename std::allocator_traits<U>::is_always_equal()); |
3388 | 0 | } Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >() Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >() Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >() Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >() |
3389 | | |
3390 | | void create_object_implicitly(std::false_type) |
3391 | | { |
3392 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Cannot create object implicitly - allocator is stateful.")); |
3393 | | } |
3394 | | |
3395 | | void create_object_implicitly(std::true_type) |
3396 | 0 | { |
3397 | 0 | *this = basic_json(json_object_arg, tag()); |
3398 | 0 | } Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>) |
3399 | | |
3400 | | void reserve(std::size_t n) |
3401 | 29.9k | { |
3402 | 29.9k | if (n > 0) |
3403 | 29.9k | { |
3404 | 29.9k | switch (storage_kind()) |
3405 | 29.9k | { |
3406 | 29.9k | case json_storage_kind::array: |
3407 | 29.9k | cast<array_storage>().value().reserve(n); |
3408 | 29.9k | break; |
3409 | 0 | case json_storage_kind::empty_object: |
3410 | 0 | create_object_implicitly(); |
3411 | 0 | cast<object_storage>().value().reserve(n); |
3412 | 0 | break; |
3413 | 0 | case json_storage_kind::object: |
3414 | 0 | cast<object_storage>().value().reserve(n); |
3415 | 0 | break; |
3416 | 0 | case json_storage_kind::json_ref: |
3417 | 0 | cast<json_reference_storage>().value().reserve(n); |
3418 | 0 | break; |
3419 | 0 | default: |
3420 | 0 | break; |
3421 | 29.9k | } |
3422 | 29.9k | } |
3423 | 29.9k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::reserve(unsigned long) Line | Count | Source | 3401 | 29.9k | { | 3402 | 29.9k | if (n > 0) | 3403 | 29.9k | { | 3404 | 29.9k | switch (storage_kind()) | 3405 | 29.9k | { | 3406 | 29.9k | case json_storage_kind::array: | 3407 | 29.9k | cast<array_storage>().value().reserve(n); | 3408 | 29.9k | break; | 3409 | 0 | case json_storage_kind::empty_object: | 3410 | 0 | create_object_implicitly(); | 3411 | 0 | cast<object_storage>().value().reserve(n); | 3412 | 0 | break; | 3413 | 0 | case json_storage_kind::object: | 3414 | 0 | cast<object_storage>().value().reserve(n); | 3415 | 0 | break; | 3416 | 0 | case json_storage_kind::json_ref: | 3417 | 0 | cast<json_reference_storage>().value().reserve(n); | 3418 | 0 | break; | 3419 | 0 | default: | 3420 | 0 | break; | 3421 | 29.9k | } | 3422 | 29.9k | } | 3423 | 29.9k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::reserve(unsigned long) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::reserve(unsigned long) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::reserve(unsigned long) |
3424 | | |
3425 | | void resize(std::size_t n) |
3426 | | { |
3427 | | switch (storage_kind()) |
3428 | | { |
3429 | | case json_storage_kind::array: |
3430 | | cast<array_storage>().value().resize(n); |
3431 | | break; |
3432 | | case json_storage_kind::json_ref: |
3433 | | cast<json_reference_storage>().value().resize(n); |
3434 | | break; |
3435 | | default: |
3436 | | break; |
3437 | | } |
3438 | | } |
3439 | | |
3440 | | template <typename T> |
3441 | | void resize(std::size_t n, T val) |
3442 | | { |
3443 | | switch (storage_kind()) |
3444 | | { |
3445 | | case json_storage_kind::array: |
3446 | | cast<array_storage>().value().resize(n, val); |
3447 | | break; |
3448 | | case json_storage_kind::json_ref: |
3449 | | cast<json_reference_storage>().value().resize(n, val); |
3450 | | break; |
3451 | | default: |
3452 | | break; |
3453 | | } |
3454 | | } |
3455 | | |
3456 | | template <typename T> |
3457 | | typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,T>::type |
3458 | | as() const |
3459 | | { |
3460 | | auto r = reflect::json_conv_traits<basic_json,T>::try_as(make_alloc_set(), *this); |
3461 | | if (!r) |
3462 | | { |
3463 | | JSONCONS_THROW(conv_error(r.error().code(), r.error().message_arg())); |
3464 | | } |
3465 | | return std::move(r.value()); |
3466 | | } |
3467 | | |
3468 | | template <typename T, typename Alloc, typename TempAlloc> |
3469 | | typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,T>::type |
3470 | | as(const allocator_set<Alloc,TempAlloc>& aset) const |
3471 | | { |
3472 | | auto r = reflect::json_conv_traits<basic_json,T>::try_as(aset, *this); |
3473 | | if (!r) |
3474 | | { |
3475 | | JSONCONS_THROW(conv_error(r.error().code(), r.error().message_arg())); |
3476 | | } |
3477 | | return std::move(r.value()); |
3478 | | } |
3479 | | |
3480 | | template <typename T> |
3481 | | typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,conversion_result<T>>::type |
3482 | | try_as() const |
3483 | | { |
3484 | | return reflect::json_conv_traits<basic_json,T>::try_as(make_alloc_set(), *this); |
3485 | | } |
3486 | | |
3487 | | template <typename T, typename Alloc, typename TempAlloc> |
3488 | | typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,conversion_result<T>>::type |
3489 | | try_as(const allocator_set<Alloc,TempAlloc>& aset) const |
3490 | | { |
3491 | | return reflect::json_conv_traits<basic_json,T>::try_as(aset, *this); |
3492 | | } |
3493 | | |
3494 | | template <typename T> |
3495 | | typename std::enable_if<(!ext_traits::is_string<T>::value && |
3496 | | ext_traits::is_back_insertable_byte_container<T>::value) || |
3497 | | ext_traits::is_basic_byte_string<T>::value,T>::type |
3498 | | as(byte_string_arg_t, semantic_tag hint) const |
3499 | | { |
3500 | | std::error_code ec; |
3501 | | switch (storage_kind()) |
3502 | | { |
3503 | | case json_storage_kind::short_str: |
3504 | | case json_storage_kind::long_str: |
3505 | | { |
3506 | | switch (tag()) |
3507 | | { |
3508 | | case semantic_tag::base16: |
3509 | | case semantic_tag::base64: |
3510 | | case semantic_tag::base64url: |
3511 | | { |
3512 | | T v; |
3513 | | auto sv = as_string_view(); |
3514 | | auto r = string_to_bytes(sv.begin(), sv.end(), tag(), v); |
3515 | | if (JSONCONS_UNLIKELY(r.ec != conv_errc{})) |
3516 | | { |
3517 | | JSONCONS_THROW(ser_error(conv_errc::not_byte_string)); |
3518 | | } |
3519 | | return v; |
3520 | | } |
3521 | | default: |
3522 | | { |
3523 | | T v; |
3524 | | auto sv = as_string_view(); |
3525 | | auto r = string_to_bytes(sv.begin(), sv.end(), hint, v); |
3526 | | if (JSONCONS_UNLIKELY(r.ec != conv_errc{})) |
3527 | | { |
3528 | | JSONCONS_THROW(ser_error(conv_errc::not_byte_string)); |
3529 | | } |
3530 | | return v; |
3531 | | } |
3532 | | break; |
3533 | | } |
3534 | | break; |
3535 | | } |
3536 | | case json_storage_kind::byte_str: |
3537 | | return T(as_byte_string_view().begin(), as_byte_string_view().end()); |
3538 | | case json_storage_kind::json_const_ref: |
3539 | | return cast<json_const_reference_storage>().value().template as<T>(byte_string_arg, hint); |
3540 | | case json_storage_kind::json_ref: |
3541 | | return cast<json_reference_storage>().value().template as<T>(byte_string_arg, hint); |
3542 | | default: |
3543 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not a byte string")); |
3544 | | } |
3545 | | } |
3546 | | |
3547 | | bool as_bool() const |
3548 | | { |
3549 | | switch (storage_kind()) |
3550 | | { |
3551 | | case json_storage_kind::boolean: |
3552 | | return cast<bool_storage>().value(); |
3553 | | case json_storage_kind::int64: |
3554 | | return cast<int64_storage>().value() != 0; |
3555 | | case json_storage_kind::uint64: |
3556 | | return cast<uint64_storage>().value() != 0; |
3557 | | case json_storage_kind::json_const_ref: |
3558 | | return cast<json_const_reference_storage>().value().as_bool(); |
3559 | | case json_storage_kind::json_ref: |
3560 | | return cast<json_reference_storage>().value().as_bool(); |
3561 | | default: |
3562 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not a bool")); |
3563 | | } |
3564 | | } |
3565 | | |
3566 | | template <typename T> |
3567 | | conversion_result<T> try_as_integer() const |
3568 | | { |
3569 | | using result_type = conversion_result<T>; |
3570 | | |
3571 | | switch (storage_kind()) |
3572 | | { |
3573 | | case json_storage_kind::short_str: |
3574 | | case json_storage_kind::long_str: |
3575 | | { |
3576 | | T val; |
3577 | | auto result = jsoncons::utility::to_integer<T>(as_string_view().data(), as_string_view().length(), val); |
3578 | | if (!result) |
3579 | | { |
3580 | | return result_type(jsoncons::unexpect, conv_errc::not_integer); |
3581 | | } |
3582 | | return val; |
3583 | | } |
3584 | | case json_storage_kind::half_float: |
3585 | | return result_type(static_cast<T>(cast<half_storage>().value())); |
3586 | | case json_storage_kind::float64: |
3587 | | return result_type(static_cast<T>(cast<double_storage>().value())); |
3588 | | case json_storage_kind::int64: |
3589 | | return result_type(static_cast<T>(cast<int64_storage>().value())); |
3590 | | case json_storage_kind::uint64: |
3591 | | return result_type(static_cast<T>(cast<uint64_storage>().value())); |
3592 | | case json_storage_kind::boolean: |
3593 | | return result_type(static_cast<T>(cast<bool_storage>().value() ? 1 : 0)); |
3594 | | case json_storage_kind::json_const_ref: |
3595 | | return cast<json_const_reference_storage>().value().template try_as_integer<T>(); |
3596 | | case json_storage_kind::json_ref: |
3597 | | return cast<json_reference_storage>().value().template try_as_integer<T>(); |
3598 | | default: |
3599 | | return result_type(jsoncons::unexpect, conv_errc::not_integer); |
3600 | | } |
3601 | | } |
3602 | | |
3603 | | template <typename T> |
3604 | | T as_integer() const |
3605 | | { |
3606 | | auto result = try_as_integer<T>(); |
3607 | | if (!result) |
3608 | | { |
3609 | | JSONCONS_THROW(conv_error(result.error().code())); |
3610 | | } |
3611 | | return *result; |
3612 | | } |
3613 | | |
3614 | | template <typename T> |
3615 | | typename std::enable_if<ext_traits::is_signed_integer<T>::value && sizeof(T) <= sizeof(int64_t),bool>::type |
3616 | | is_integer() const noexcept |
3617 | | { |
3618 | | switch (storage_kind()) |
3619 | | { |
3620 | | case json_storage_kind::int64: |
3621 | | return (as_integer<int64_t>() >= (ext_traits::integer_limits<T>::lowest)()) && (as_integer<int64_t>() <= (ext_traits::integer_limits<T>::max)()); |
3622 | | case json_storage_kind::uint64: |
3623 | | return as_integer<uint64_t>() <= static_cast<uint64_t>((ext_traits::integer_limits<T>::max)()); |
3624 | | case json_storage_kind::json_const_ref: |
3625 | | return cast<json_const_reference_storage>().value().template is_integer<T>(); |
3626 | | case json_storage_kind::json_ref: |
3627 | | return cast<json_reference_storage>().value().template is_integer<T>(); |
3628 | | default: |
3629 | | return false; |
3630 | | } |
3631 | | } |
3632 | | |
3633 | | template <typename T> |
3634 | | typename std::enable_if<ext_traits::is_signed_integer<T>::value && sizeof(int64_t) < sizeof(T),bool>::type |
3635 | | is_integer() const noexcept |
3636 | | { |
3637 | | switch (storage_kind()) |
3638 | | { |
3639 | | case json_storage_kind::short_str: |
3640 | | case json_storage_kind::long_str: |
3641 | | { |
3642 | | T val; |
3643 | | auto result = jsoncons::utility::to_integer<T>(as_string_view().data(), as_string_view().length(), val); |
3644 | | return result ? true : false; |
3645 | | } |
3646 | | case json_storage_kind::int64: |
3647 | | return (as_integer<int64_t>() >= (ext_traits::integer_limits<T>::lowest)()) && (as_integer<int64_t>() <= (ext_traits::integer_limits<T>::max)()); |
3648 | | case json_storage_kind::uint64: |
3649 | | return as_integer<uint64_t>() <= static_cast<uint64_t>((ext_traits::integer_limits<T>::max)()); |
3650 | | case json_storage_kind::json_const_ref: |
3651 | | return cast<json_const_reference_storage>().value().template is_integer<T>(); |
3652 | | case json_storage_kind::json_ref: |
3653 | | return cast<json_reference_storage>().value().template is_integer<T>(); |
3654 | | default: |
3655 | | return false; |
3656 | | } |
3657 | | } |
3658 | | |
3659 | | template <typename IntegerType> |
3660 | | typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(int64_t),bool>::type |
3661 | | is_integer() const noexcept |
3662 | | { |
3663 | | switch (storage_kind()) |
3664 | | { |
3665 | | case json_storage_kind::int64: |
3666 | | return as_integer<int64_t>() >= 0 && static_cast<uint64_t>(as_integer<int64_t>()) <= (ext_traits::integer_limits<IntegerType>::max)(); |
3667 | | case json_storage_kind::uint64: |
3668 | | return as_integer<uint64_t>() <= (ext_traits::integer_limits<IntegerType>::max)(); |
3669 | | case json_storage_kind::json_const_ref: |
3670 | | return cast<json_const_reference_storage>().value().template is_integer<IntegerType>(); |
3671 | | case json_storage_kind::json_ref: |
3672 | | return cast<json_reference_storage>().value().template is_integer<IntegerType>(); |
3673 | | default: |
3674 | | return false; |
3675 | | } |
3676 | | } |
3677 | | |
3678 | | template <typename IntegerType> |
3679 | | typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(int64_t) < sizeof(IntegerType),bool>::type |
3680 | | is_integer() const noexcept |
3681 | | { |
3682 | | switch (storage_kind()) |
3683 | | { |
3684 | | case json_storage_kind::short_str: |
3685 | | case json_storage_kind::long_str: |
3686 | | { |
3687 | | IntegerType val; |
3688 | | auto result = jsoncons::utility::to_integer<IntegerType>(as_string_view().data(), as_string_view().length(), val); |
3689 | | return result ? true : false; |
3690 | | } |
3691 | | case json_storage_kind::int64: |
3692 | | return as_integer<int64_t>() >= 0 && static_cast<uint64_t>(as_integer<int64_t>()) <= (ext_traits::integer_limits<IntegerType>::max)(); |
3693 | | case json_storage_kind::uint64: |
3694 | | return as_integer<uint64_t>() <= (ext_traits::integer_limits<IntegerType>::max)(); |
3695 | | case json_storage_kind::json_const_ref: |
3696 | | return cast<json_const_reference_storage>().value().template is_integer<IntegerType>(); |
3697 | | case json_storage_kind::json_ref: |
3698 | | return cast<json_reference_storage>().value().template is_integer<IntegerType>(); |
3699 | | default: |
3700 | | return false; |
3701 | | } |
3702 | | } |
3703 | | |
3704 | | conversion_result<double> try_as_double() const |
3705 | | { |
3706 | | using result_type = conversion_result<double>; |
3707 | | |
3708 | | switch (storage_kind()) |
3709 | | { |
3710 | | case json_storage_kind::short_str: |
3711 | | case json_storage_kind::long_str: |
3712 | | { |
3713 | | double x{0}; |
3714 | | const char_type* s = as_cstring(); |
3715 | | std::size_t len = as_string_view().length(); |
3716 | | if (JSONCONS_UNLIKELY(len > 2 && s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))) |
3717 | | { |
3718 | | auto result = jsoncons::utility::hexstr_to_double(s, len, x); |
3719 | | if (result.ec == std::errc::invalid_argument) |
3720 | | { |
3721 | | return result_type(jsoncons::unexpect, conv_errc::not_double); |
3722 | | } |
3723 | | } |
3724 | | else if (JSONCONS_UNLIKELY(len > 3 && s[0] == '-' && s[1] == '0' && (s[2] == 'x' || s[2] == 'X'))) |
3725 | | { |
3726 | | auto result = jsoncons::utility::hexstr_to_double(s, len, x); |
3727 | | if (result.ec == std::errc::invalid_argument) |
3728 | | { |
3729 | | return result_type(jsoncons::unexpect, conv_errc::not_double); |
3730 | | } |
3731 | | } |
3732 | | else |
3733 | | { |
3734 | | auto result = jsoncons::utility::decstr_to_double(as_cstring(), as_string_view().length(), x); |
3735 | | if (result.ec == std::errc::invalid_argument) |
3736 | | { |
3737 | | return result_type(jsoncons::unexpect, conv_errc::not_double); |
3738 | | } |
3739 | | } |
3740 | | |
3741 | | return result_type(x); |
3742 | | } |
3743 | | case json_storage_kind::half_float: |
3744 | | return result_type(binary::decode_half(cast<half_storage>().value())); |
3745 | | case json_storage_kind::float64: |
3746 | | return result_type(cast<double_storage>().value()); |
3747 | | case json_storage_kind::int64: |
3748 | | return result_type(static_cast<double>(cast<int64_storage>().value())); |
3749 | | case json_storage_kind::uint64: |
3750 | | return result_type(static_cast<double>(cast<uint64_storage>().value())); |
3751 | | case json_storage_kind::json_const_ref: |
3752 | | return cast<json_const_reference_storage>().value().try_as_double(); |
3753 | | case json_storage_kind::json_ref: |
3754 | | return cast<json_reference_storage>().value().try_as_double(); |
3755 | | default: |
3756 | | return result_type(jsoncons::unexpect, conv_errc::not_double); |
3757 | | } |
3758 | | } |
3759 | | |
3760 | | double as_double() const |
3761 | | { |
3762 | | auto result = try_as_double(); |
3763 | | if (!result) |
3764 | | { |
3765 | | JSONCONS_THROW(conv_error(result.error().code())); |
3766 | | } |
3767 | | return *result; |
3768 | | } |
3769 | | |
3770 | | template <typename T,typename Alloc, typename TempAlloc> |
3771 | | typename std::enable_if<ext_traits::is_string<T>::value && |
3772 | | std::is_same<char_type,typename T::value_type>::value,conversion_result<T>>::type |
3773 | | try_as_string(const allocator_set<Alloc,TempAlloc>& aset) const |
3774 | | { |
3775 | | using value_type = T; |
3776 | | using result_type = conversion_result<value_type>; |
3777 | | |
3778 | | switch (storage_kind()) |
3779 | | { |
3780 | | case json_storage_kind::short_str: |
3781 | | { |
3782 | | auto& stor = cast<short_string_storage>(); |
3783 | | return result_type(jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator(), stor.data(), stor.length())); |
3784 | | } |
3785 | | case json_storage_kind::long_str: |
3786 | | { |
3787 | | auto& stor = cast<long_string_storage>(); |
3788 | | return result_type(jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator(), stor.data(), stor.length())); |
3789 | | } |
3790 | | case json_storage_kind::byte_str: |
3791 | | { |
3792 | | auto& stor = cast<byte_string_storage>(); |
3793 | | value_type s = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator()); |
3794 | | bytes_to_string(stor.data(), stor.data()+stor.length(), tag(), s); |
3795 | | return result_type(std::move(s)); |
3796 | | } |
3797 | | case json_storage_kind::json_const_ref: |
3798 | | return cast<json_const_reference_storage>().value().template try_as_string<T>(aset); |
3799 | | case json_storage_kind::json_ref: |
3800 | | return cast<json_reference_storage>().value().template try_as_string<T>(aset); |
3801 | | default: |
3802 | | { |
3803 | | value_type s = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator()); |
3804 | | basic_compact_json_encoder<char_type,jsoncons::string_sink<value_type>,TempAlloc> encoder(s, aset.get_temp_allocator()); |
3805 | | std::error_code ec; |
3806 | | dump(encoder, ec); |
3807 | | if (JSONCONS_UNLIKELY(ec)) |
3808 | | { |
3809 | | return result_type(jsoncons::unexpect, ec); |
3810 | | } |
3811 | | return result_type(std::move(s)); |
3812 | | } |
3813 | | } |
3814 | | } |
3815 | | |
3816 | | template <typename CharsAlloc> |
3817 | | std::basic_string<char_type,char_traits_type,CharsAlloc> as_string(const CharsAlloc& alloc) const |
3818 | | { |
3819 | | using value_type = std::basic_string<char_type,char_traits_type,CharsAlloc>; |
3820 | | auto r = try_as_string<value_type>(make_alloc_set(alloc)); |
3821 | | if (!r) |
3822 | | { |
3823 | | JSONCONS_THROW(conv_error(r.error().code())); |
3824 | | } |
3825 | | return *r; |
3826 | | } |
3827 | | |
3828 | | template <typename CharsAlloc=std::allocator<char_type>> |
3829 | | std::basic_string<char_type,char_traits_type,CharsAlloc> as_string() const |
3830 | | { |
3831 | | return as_string(CharsAlloc()); |
3832 | | } |
3833 | | |
3834 | | std::basic_string<char_type,char_traits_type> as_string() const |
3835 | | { |
3836 | | return as_string(std::allocator<char_type>()); |
3837 | | } |
3838 | | |
3839 | | const char_type* as_cstring() const |
3840 | | { |
3841 | | switch (storage_kind()) |
3842 | | { |
3843 | | case json_storage_kind::short_str: |
3844 | | return cast<short_string_storage>().c_str(); |
3845 | | case json_storage_kind::long_str: |
3846 | | return cast<long_string_storage>().c_str(); |
3847 | | case json_storage_kind::json_const_ref: |
3848 | | return cast<json_const_reference_storage>().value().as_cstring(); |
3849 | | case json_storage_kind::json_ref: |
3850 | | return cast<json_reference_storage>().value().as_cstring(); |
3851 | | default: |
3852 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not a cstring")); |
3853 | | } |
3854 | | } |
3855 | | |
3856 | | basic_json& at(const string_view_type& key) |
3857 | | { |
3858 | | switch (storage_kind()) |
3859 | | { |
3860 | | case json_storage_kind::empty_object: |
3861 | | JSONCONS_THROW(key_not_found(key.data(),key.length())); |
3862 | | case json_storage_kind::object: |
3863 | | { |
3864 | | auto it = cast<object_storage>().value().find(key); |
3865 | | if (it == cast<object_storage>().value().end()) |
3866 | | { |
3867 | | JSONCONS_THROW(key_not_found(key.data(),key.length())); |
3868 | | } |
3869 | | return (*it).value(); |
3870 | | } |
3871 | | case json_storage_kind::json_ref: |
3872 | | return cast<json_reference_storage>().value().at(key); |
3873 | | default: |
3874 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
3875 | | } |
3876 | | } |
3877 | | |
3878 | | const basic_json& at(const string_view_type& key) const |
3879 | | { |
3880 | | switch (storage_kind()) |
3881 | | { |
3882 | | case json_storage_kind::empty_object: |
3883 | | JSONCONS_THROW(key_not_found(key.data(),key.length())); |
3884 | | case json_storage_kind::object: |
3885 | | { |
3886 | | auto it = cast<object_storage>().value().find(key); |
3887 | | if (it == cast<object_storage>().value().end()) |
3888 | | { |
3889 | | JSONCONS_THROW(key_not_found(key.data(),key.length())); |
3890 | | } |
3891 | | return (*it).value(); |
3892 | | } |
3893 | | case json_storage_kind::json_const_ref: |
3894 | | return cast<json_const_reference_storage>().value().at(key); |
3895 | | case json_storage_kind::json_ref: |
3896 | | return cast<json_reference_storage>().value().at(key); |
3897 | | default: |
3898 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
3899 | | } |
3900 | | } |
3901 | | |
3902 | | basic_json& at(std::size_t i) |
3903 | | { |
3904 | | switch (storage_kind()) |
3905 | | { |
3906 | | case json_storage_kind::array: |
3907 | | if (i >= cast<array_storage>().value().size()) |
3908 | | { |
3909 | | JSONCONS_THROW(json_runtime_error<std::out_of_range>("Invalid array subscript")); |
3910 | | } |
3911 | | return cast<array_storage>().value().operator[](i); |
3912 | | case json_storage_kind::object: |
3913 | | return cast<object_storage>().value().at(i); |
3914 | | case json_storage_kind::json_ref: |
3915 | | return cast<json_reference_storage>().value().at(i); |
3916 | | default: |
3917 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Index on non-array value not supported")); |
3918 | | } |
3919 | | } |
3920 | | |
3921 | | const basic_json& at(std::size_t i) const |
3922 | | { |
3923 | | switch (storage_kind()) |
3924 | | { |
3925 | | case json_storage_kind::array: |
3926 | | if (i >= cast<array_storage>().value().size()) |
3927 | | { |
3928 | | JSONCONS_THROW(json_runtime_error<std::out_of_range>("Invalid array subscript")); |
3929 | | } |
3930 | | return cast<array_storage>().value().operator[](i); |
3931 | | case json_storage_kind::object: |
3932 | | return cast<object_storage>().value().at(i); |
3933 | | case json_storage_kind::json_const_ref: |
3934 | | return cast<json_const_reference_storage>().value().at(i); |
3935 | | case json_storage_kind::json_ref: |
3936 | | return cast<json_reference_storage>().value().at(i); |
3937 | | default: |
3938 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Index on non-array value not supported")); |
3939 | | } |
3940 | | } |
3941 | | |
3942 | | object_iterator find(const string_view_type& key) |
3943 | | { |
3944 | | switch (storage_kind()) |
3945 | | { |
3946 | | case json_storage_kind::empty_object: |
3947 | | return object_range().end(); |
3948 | | case json_storage_kind::object: |
3949 | | return object_iterator(cast<object_storage>().value().find(key)); |
3950 | | case json_storage_kind::json_ref: |
3951 | | return cast<json_reference_storage>().value().find(key); |
3952 | | default: |
3953 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
3954 | | } |
3955 | | } |
3956 | | |
3957 | | const_object_iterator find(const string_view_type& key) const |
3958 | | { |
3959 | | switch (storage_kind()) |
3960 | | { |
3961 | | case json_storage_kind::empty_object: |
3962 | | return object_range().end(); |
3963 | | case json_storage_kind::object: |
3964 | | return const_object_iterator(cast<object_storage>().value().find(key)); |
3965 | | case json_storage_kind::json_const_ref: |
3966 | | return cast<json_const_reference_storage>().value().find(key); |
3967 | | case json_storage_kind::json_ref: |
3968 | | return cast<json_reference_storage>().value().find(key); |
3969 | | default: |
3970 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
3971 | | } |
3972 | | } |
3973 | | |
3974 | | const basic_json& at_or_null(const string_view_type& key) const |
3975 | | { |
3976 | | switch (storage_kind()) |
3977 | | { |
3978 | | case json_storage_kind::null: |
3979 | | case json_storage_kind::empty_object: |
3980 | | { |
3981 | | return null(); |
3982 | | } |
3983 | | case json_storage_kind::object: |
3984 | | { |
3985 | | auto it = cast<object_storage>().value().find(key); |
3986 | | if (it != cast<object_storage>().value().end()) |
3987 | | { |
3988 | | return (*it).value(); |
3989 | | } |
3990 | | else |
3991 | | { |
3992 | | return null(); |
3993 | | } |
3994 | | } |
3995 | | case json_storage_kind::json_const_ref: |
3996 | | return cast<json_const_reference_storage>().value().at_or_null(key); |
3997 | | case json_storage_kind::json_ref: |
3998 | | return cast<json_reference_storage>().value().at_or_null(key); |
3999 | | default: |
4000 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
4001 | | } |
4002 | | } |
4003 | | |
4004 | | template <typename T,typename U> |
4005 | | T get_value_or(const string_view_type& key, U&& default_value) const |
4006 | | { |
4007 | | static_assert(std::is_copy_constructible<T>::value, |
4008 | | "get_value_or: T must be copy constructible"); |
4009 | | static_assert(std::is_convertible<U&&, T>::value, |
4010 | | "get_value_or: U must be convertible to T"); |
4011 | | switch (storage_kind()) |
4012 | | { |
4013 | | case json_storage_kind::null: |
4014 | | case json_storage_kind::empty_object: |
4015 | | return static_cast<T>(std::forward<U>(default_value)); |
4016 | | case json_storage_kind::object: |
4017 | | { |
4018 | | auto it = cast<object_storage>().value().find(key); |
4019 | | if (it != cast<object_storage>().value().end()) |
4020 | | { |
4021 | | return (*it).value().template as<T>(); |
4022 | | } |
4023 | | else |
4024 | | { |
4025 | | return static_cast<T>(std::forward<U>(default_value)); |
4026 | | } |
4027 | | } |
4028 | | case json_storage_kind::json_const_ref: |
4029 | | return cast<json_const_reference_storage>().value().template get_value_or<T,U>(key,std::forward<U>(default_value)); |
4030 | | case json_storage_kind::json_ref: |
4031 | | return cast<json_reference_storage>().value().template get_value_or<T,U>(key,std::forward<U>(default_value)); |
4032 | | default: |
4033 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
4034 | | } |
4035 | | } |
4036 | | |
4037 | | // Modifiers |
4038 | | |
4039 | | void shrink_to_fit() |
4040 | | { |
4041 | | switch (storage_kind()) |
4042 | | { |
4043 | | case json_storage_kind::array: |
4044 | | cast<array_storage>().value().shrink_to_fit(); |
4045 | | break; |
4046 | | case json_storage_kind::object: |
4047 | | cast<object_storage>().value().shrink_to_fit(); |
4048 | | break; |
4049 | | case json_storage_kind::json_ref: |
4050 | | cast<json_reference_storage>().value().shrink_to_fit(); |
4051 | | break; |
4052 | | default: |
4053 | | break; |
4054 | | } |
4055 | | } |
4056 | | |
4057 | | void clear() |
4058 | 41.3k | { |
4059 | 41.3k | switch (storage_kind()) |
4060 | 41.3k | { |
4061 | 8.11k | case json_storage_kind::array: |
4062 | 8.11k | cast<array_storage>().value().clear(); |
4063 | 8.11k | break; |
4064 | 33.1k | case json_storage_kind::object: |
4065 | 33.1k | cast<object_storage>().value().clear(); |
4066 | 33.1k | break; |
4067 | 0 | case json_storage_kind::json_ref: |
4068 | 0 | cast<json_reference_storage>().value().clear(); |
4069 | 0 | break; |
4070 | 0 | default: |
4071 | 0 | break; |
4072 | 41.3k | } |
4073 | 41.3k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::clear() Line | Count | Source | 4058 | 41.3k | { | 4059 | 41.3k | switch (storage_kind()) | 4060 | 41.3k | { | 4061 | 8.11k | case json_storage_kind::array: | 4062 | 8.11k | cast<array_storage>().value().clear(); | 4063 | 8.11k | break; | 4064 | 33.1k | case json_storage_kind::object: | 4065 | 33.1k | cast<object_storage>().value().clear(); | 4066 | 33.1k | break; | 4067 | 0 | case json_storage_kind::json_ref: | 4068 | 0 | cast<json_reference_storage>().value().clear(); | 4069 | 0 | break; | 4070 | 0 | default: | 4071 | 0 | break; | 4072 | 41.3k | } | 4073 | 41.3k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::clear() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::clear() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::clear() |
4074 | | |
4075 | | object_iterator erase(const_object_iterator pos) |
4076 | | { |
4077 | | switch (storage_kind()) |
4078 | | { |
4079 | | case json_storage_kind::empty_object: |
4080 | | return object_range().end(); |
4081 | | case json_storage_kind::object: |
4082 | | return object_iterator(cast<object_storage>().value().erase(pos)); |
4083 | | case json_storage_kind::json_ref: |
4084 | | return cast<json_reference_storage>().value().erase(pos); |
4085 | | default: |
4086 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object")); |
4087 | | } |
4088 | | } |
4089 | | |
4090 | | object_iterator erase(const_object_iterator first, const_object_iterator last) |
4091 | | { |
4092 | | switch (storage_kind()) |
4093 | | { |
4094 | | case json_storage_kind::empty_object: |
4095 | | return object_range().end(); |
4096 | | case json_storage_kind::object: |
4097 | | return object_iterator(cast<object_storage>().value().erase(first, last)); |
4098 | | case json_storage_kind::json_ref: |
4099 | | return cast<json_reference_storage>().value().erase(first, last); |
4100 | | default: |
4101 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object")); |
4102 | | } |
4103 | | } |
4104 | | |
4105 | | array_iterator erase(const_array_iterator pos) |
4106 | | { |
4107 | | switch (storage_kind()) |
4108 | | { |
4109 | | case json_storage_kind::array: |
4110 | | return cast<array_storage>().value().erase(pos); |
4111 | | case json_storage_kind::json_ref: |
4112 | | return cast<json_reference_storage>().value().erase(pos); |
4113 | | default: |
4114 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array")); |
4115 | | } |
4116 | | } |
4117 | | |
4118 | | array_iterator erase(const_array_iterator first, const_array_iterator last) |
4119 | | { |
4120 | | switch (storage_kind()) |
4121 | | { |
4122 | | case json_storage_kind::array: |
4123 | | return cast<array_storage>().value().erase(first, last); |
4124 | | case json_storage_kind::json_ref: |
4125 | | return cast<json_reference_storage>().value().erase(first, last); |
4126 | | default: |
4127 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array")); |
4128 | | } |
4129 | | } |
4130 | | |
4131 | | // Removes all elements from an array value whose index is between from_index, inclusive, and to_index, exclusive. |
4132 | | |
4133 | | void erase(const string_view_type& key) |
4134 | | { |
4135 | | switch (storage_kind()) |
4136 | | { |
4137 | | case json_storage_kind::empty_object: |
4138 | | break; |
4139 | | case json_storage_kind::object: |
4140 | | cast<object_storage>().value().erase(key); |
4141 | | break; |
4142 | | case json_storage_kind::json_ref: |
4143 | | return cast<json_reference_storage>().value().erase(key); |
4144 | | default: |
4145 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
4146 | | } |
4147 | | } |
4148 | | |
4149 | | template <typename T> |
4150 | | std::pair<object_iterator,bool> insert_or_assign(const string_view_type& key, T&& val) |
4151 | | { |
4152 | | switch (storage_kind()) |
4153 | | { |
4154 | | case json_storage_kind::empty_object: |
4155 | | { |
4156 | | create_object_implicitly(); |
4157 | | auto result = cast<object_storage>().value().insert_or_assign(key, std::forward<T>(val)); |
4158 | | return std::make_pair(object_iterator(result.first), result.second); |
4159 | | } |
4160 | | case json_storage_kind::object: |
4161 | | { |
4162 | | auto result = cast<object_storage>().value().insert_or_assign(key, std::forward<T>(val)); |
4163 | | return std::make_pair(object_iterator(result.first), result.second); |
4164 | | } |
4165 | | case json_storage_kind::json_ref: |
4166 | | return cast<json_reference_storage>().value().insert_or_assign(key, std::forward<T>(val)); |
4167 | | default: |
4168 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
4169 | | } |
4170 | | } |
4171 | | |
4172 | | template <typename ... Args> |
4173 | | std::pair<object_iterator,bool> try_emplace(const string_view_type& key, Args&&... args) |
4174 | | { |
4175 | | switch (storage_kind()) |
4176 | | { |
4177 | | case json_storage_kind::empty_object: |
4178 | | { |
4179 | | create_object_implicitly(); |
4180 | | auto result = cast<object_storage>().value().try_emplace(key, std::forward<Args>(args)...); |
4181 | | return std::make_pair(object_iterator(result.first),result.second); |
4182 | | } |
4183 | | case json_storage_kind::object: |
4184 | | { |
4185 | | auto result = cast<object_storage>().value().try_emplace(key, std::forward<Args>(args)...); |
4186 | | return std::make_pair(object_iterator(result.first),result.second); |
4187 | | } |
4188 | | case json_storage_kind::json_ref: |
4189 | | return cast<json_reference_storage>().value().try_emplace(key, std::forward<Args>(args)...); |
4190 | | default: |
4191 | | JSONCONS_THROW(not_an_object(key.data(),key.length())); |
4192 | | } |
4193 | | } |
4194 | | |
4195 | | // merge |
4196 | | |
4197 | | void merge(const basic_json& source) |
4198 | | { |
4199 | | switch (source.storage_kind()) |
4200 | | { |
4201 | | case json_storage_kind::empty_object: |
4202 | | break; |
4203 | | case json_storage_kind::object: |
4204 | | switch (storage_kind()) |
4205 | | { |
4206 | | case json_storage_kind::empty_object: |
4207 | | create_object_implicitly(); |
4208 | | cast<object_storage>().value().merge(source.cast<object_storage>().value()); |
4209 | | break; |
4210 | | case json_storage_kind::object: |
4211 | | cast<object_storage>().value().merge(source.cast<object_storage>().value()); |
4212 | | break; |
4213 | | case json_storage_kind::json_ref: |
4214 | | cast<json_reference_storage>().value().merge(source); |
4215 | | break; |
4216 | | default: |
4217 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4218 | | } |
4219 | | break; |
4220 | | case json_storage_kind::json_ref: |
4221 | | merge(source.cast<json_reference_storage>().value()); |
4222 | | break; |
4223 | | default: |
4224 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4225 | | } |
4226 | | } |
4227 | | |
4228 | | void merge(basic_json&& source) |
4229 | | { |
4230 | | switch (source.storage_kind()) |
4231 | | { |
4232 | | case json_storage_kind::empty_object: |
4233 | | break; |
4234 | | case json_storage_kind::object: |
4235 | | switch (storage_kind()) |
4236 | | { |
4237 | | case json_storage_kind::empty_object: |
4238 | | create_object_implicitly(); |
4239 | | cast<object_storage>().value().merge(std::move(source.cast<object_storage>().value())); |
4240 | | break; |
4241 | | case json_storage_kind::object: |
4242 | | cast<object_storage>().value().merge(std::move(source.cast<object_storage>().value())); |
4243 | | break; |
4244 | | case json_storage_kind::json_ref: |
4245 | | cast<json_reference_storage>().value().merge(std::move(source)); |
4246 | | break; |
4247 | | default: |
4248 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4249 | | } |
4250 | | break; |
4251 | | case json_storage_kind::json_ref: |
4252 | | merge(std::move(source.cast<json_reference_storage>().value())); |
4253 | | break; |
4254 | | default: |
4255 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4256 | | } |
4257 | | } |
4258 | | |
4259 | | void merge(object_iterator hint, const basic_json& source) |
4260 | | { |
4261 | | switch (source.storage_kind()) |
4262 | | { |
4263 | | case json_storage_kind::empty_object: |
4264 | | break; |
4265 | | case json_storage_kind::object: |
4266 | | switch (storage_kind()) |
4267 | | { |
4268 | | case json_storage_kind::empty_object: |
4269 | | create_object_implicitly(); |
4270 | | cast<object_storage>().value().merge(hint, source.cast<object_storage>().value()); |
4271 | | break; |
4272 | | case json_storage_kind::object: |
4273 | | cast<object_storage>().value().merge(hint, source.cast<object_storage>().value()); |
4274 | | break; |
4275 | | case json_storage_kind::json_ref: |
4276 | | cast<json_reference_storage>().value().merge(hint, source); |
4277 | | break; |
4278 | | default: |
4279 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4280 | | } |
4281 | | break; |
4282 | | case json_storage_kind::json_ref: |
4283 | | merge(hint, source.cast<json_reference_storage>().value()); |
4284 | | break; |
4285 | | default: |
4286 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4287 | | } |
4288 | | } |
4289 | | |
4290 | | void merge(object_iterator hint, basic_json&& source) |
4291 | | { |
4292 | | switch (source.storage_kind()) |
4293 | | { |
4294 | | case json_storage_kind::empty_object: |
4295 | | break; |
4296 | | case json_storage_kind::object: |
4297 | | switch (storage_kind()) |
4298 | | { |
4299 | | case json_storage_kind::empty_object: |
4300 | | create_object_implicitly(); |
4301 | | cast<object_storage>().value().merge(hint, std::move(source.cast<object_storage>().value())); |
4302 | | break; |
4303 | | case json_storage_kind::object: |
4304 | | cast<object_storage>().value().merge(hint, std::move(source.cast<object_storage>().value())); |
4305 | | break; |
4306 | | case json_storage_kind::json_ref: |
4307 | | cast<json_reference_storage>().value().merge(hint, std::move(source)); |
4308 | | break; |
4309 | | default: |
4310 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4311 | | } |
4312 | | break; |
4313 | | case json_storage_kind::json_ref: |
4314 | | merge(hint, std::move(source.cast<json_reference_storage>().value())); |
4315 | | break; |
4316 | | default: |
4317 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4318 | | } |
4319 | | } |
4320 | | |
4321 | | // merge_or_update |
4322 | | |
4323 | | void merge_or_update(const basic_json& source) |
4324 | | { |
4325 | | switch (source.storage_kind()) |
4326 | | { |
4327 | | case json_storage_kind::empty_object: |
4328 | | break; |
4329 | | case json_storage_kind::object: |
4330 | | switch (storage_kind()) |
4331 | | { |
4332 | | case json_storage_kind::empty_object: |
4333 | | create_object_implicitly(); |
4334 | | cast<object_storage>().value().merge_or_update(source.cast<object_storage>().value()); |
4335 | | break; |
4336 | | case json_storage_kind::object: |
4337 | | cast<object_storage>().value().merge_or_update(source.cast<object_storage>().value()); |
4338 | | break; |
4339 | | case json_storage_kind::json_ref: |
4340 | | cast<json_reference_storage>().value().merge_or_update(source); |
4341 | | break; |
4342 | | default: |
4343 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object")); |
4344 | | } |
4345 | | break; |
4346 | | case json_storage_kind::json_ref: |
4347 | | merge_or_update(source.cast<json_reference_storage>().value()); |
4348 | | break; |
4349 | | default: |
4350 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4351 | | } |
4352 | | } |
4353 | | |
4354 | | void merge_or_update(basic_json&& source) |
4355 | | { |
4356 | | switch (source.storage_kind()) |
4357 | | { |
4358 | | case json_storage_kind::empty_object: |
4359 | | break; |
4360 | | case json_storage_kind::object: |
4361 | | switch (storage_kind()) |
4362 | | { |
4363 | | case json_storage_kind::empty_object: |
4364 | | create_object_implicitly(); |
4365 | | cast<object_storage>().value().merge_or_update(std::move(source.cast<object_storage>().value())); |
4366 | | break; |
4367 | | case json_storage_kind::object: |
4368 | | cast<object_storage>().value().merge_or_update(std::move(source.cast<object_storage>().value())); |
4369 | | break; |
4370 | | case json_storage_kind::json_ref: |
4371 | | cast<json_reference_storage>().value().merge_or_update(std::move(source)); |
4372 | | break; |
4373 | | default: |
4374 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object")); |
4375 | | } |
4376 | | break; |
4377 | | case json_storage_kind::json_ref: |
4378 | | merge_or_update(std::move(source.cast<json_reference_storage>().value())); |
4379 | | break; |
4380 | | default: |
4381 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4382 | | } |
4383 | | } |
4384 | | |
4385 | | void merge_or_update(object_iterator hint, const basic_json& source) |
4386 | | { |
4387 | | switch (source.storage_kind()) |
4388 | | { |
4389 | | case json_storage_kind::empty_object: |
4390 | | break; |
4391 | | case json_storage_kind::object: |
4392 | | switch (storage_kind()) |
4393 | | { |
4394 | | case json_storage_kind::empty_object: |
4395 | | create_object_implicitly(); |
4396 | | cast<object_storage>().value().merge_or_update(hint, source.cast<object_storage>().value()); |
4397 | | break; |
4398 | | case json_storage_kind::object: |
4399 | | cast<object_storage>().value().merge_or_update(hint, source.cast<object_storage>().value()); |
4400 | | break; |
4401 | | case json_storage_kind::json_ref: |
4402 | | cast<json_reference_storage>().value().merge_or_update(hint, source); |
4403 | | break; |
4404 | | default: |
4405 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object")); |
4406 | | } |
4407 | | break; |
4408 | | case json_storage_kind::json_ref: |
4409 | | merge_or_update(hint, source.cast<json_reference_storage>().value()); |
4410 | | break; |
4411 | | default: |
4412 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4413 | | } |
4414 | | } |
4415 | | |
4416 | | void merge_or_update(object_iterator hint, basic_json&& source) |
4417 | | { |
4418 | | switch (source.storage_kind()) |
4419 | | { |
4420 | | case json_storage_kind::empty_object: |
4421 | | break; |
4422 | | case json_storage_kind::object: |
4423 | | switch (storage_kind()) |
4424 | | { |
4425 | | case json_storage_kind::empty_object: |
4426 | | create_object_implicitly(); |
4427 | | cast<object_storage>().value().merge_or_update(hint, std::move(source.cast<object_storage>().value())); |
4428 | | break; |
4429 | | case json_storage_kind::object: |
4430 | | cast<object_storage>().value().merge_or_update(hint, std::move(source.cast<object_storage>().value())); |
4431 | | break; |
4432 | | case json_storage_kind::json_ref: |
4433 | | cast<json_reference_storage>().value().merge_or_update(hint, std::move(source)); |
4434 | | break; |
4435 | | default: |
4436 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object")); |
4437 | | } |
4438 | | break; |
4439 | | case json_storage_kind::json_ref: |
4440 | | merge_or_update(hint, std::move(source.cast<json_reference_storage>().value())); |
4441 | | break; |
4442 | | default: |
4443 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object")); |
4444 | | } |
4445 | | } |
4446 | | |
4447 | | template <typename T> |
4448 | | object_iterator insert_or_assign(object_iterator hint, const string_view_type& name, T&& val) |
4449 | | { |
4450 | | switch (storage_kind()) |
4451 | | { |
4452 | | case json_storage_kind::empty_object: |
4453 | | create_object_implicitly(); |
4454 | | return object_iterator(cast<object_storage>().value().insert_or_assign(hint, name, std::forward<T>(val))); |
4455 | | case json_storage_kind::object: |
4456 | | return object_iterator(cast<object_storage>().value().insert_or_assign(hint, name, std::forward<T>(val))); |
4457 | | case json_storage_kind::json_ref: |
4458 | | return object_iterator(cast<json_reference_storage>().value().insert_or_assign(hint, name, std::forward<T>(val))); |
4459 | | default: |
4460 | | JSONCONS_THROW(not_an_object(name.data(),name.length())); |
4461 | | } |
4462 | | } |
4463 | | |
4464 | | template <typename ... Args> |
4465 | | object_iterator try_emplace(object_iterator hint, const string_view_type& name, Args&&... args) |
4466 | | { |
4467 | | switch (storage_kind()) |
4468 | | { |
4469 | | case json_storage_kind::empty_object: |
4470 | | create_object_implicitly(); |
4471 | | return object_iterator(cast<object_storage>().value().try_emplace(hint, name, std::forward<Args>(args)...)); |
4472 | | case json_storage_kind::object: |
4473 | | return object_iterator(cast<object_storage>().value().try_emplace(hint, name, std::forward<Args>(args)...)); |
4474 | | case json_storage_kind::json_ref: |
4475 | | return object_iterator(cast<json_reference_storage>().value().try_emplace(hint, name, std::forward<Args>(args)...)); |
4476 | | default: |
4477 | | JSONCONS_THROW(not_an_object(name.data(),name.length())); |
4478 | | } |
4479 | | } |
4480 | | |
4481 | | template <typename T> |
4482 | | array_iterator insert(const_array_iterator pos, T&& val) |
4483 | | { |
4484 | | switch (storage_kind()) |
4485 | | { |
4486 | | case json_storage_kind::array: |
4487 | | return cast<array_storage>().value().insert(pos, std::forward<T>(val)); |
4488 | | break; |
4489 | | case json_storage_kind::json_ref: |
4490 | | return cast<json_reference_storage>().value().insert(pos, std::forward<T>(val)); |
4491 | | break; |
4492 | | default: |
4493 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); |
4494 | | } |
4495 | | } |
4496 | | |
4497 | | template <typename InputIt> |
4498 | | array_iterator insert(const_array_iterator pos, InputIt first, InputIt last) |
4499 | | { |
4500 | | switch (storage_kind()) |
4501 | | { |
4502 | | case json_storage_kind::array: |
4503 | | return cast<array_storage>().value().insert(pos, first, last); |
4504 | | break; |
4505 | | case json_storage_kind::json_ref: |
4506 | | return cast<json_reference_storage>().value().insert(pos, first, last); |
4507 | | break; |
4508 | | default: |
4509 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); |
4510 | | } |
4511 | | } |
4512 | | |
4513 | | template <typename InputIt> |
4514 | | void insert(InputIt first, InputIt last) |
4515 | | { |
4516 | | switch (storage_kind()) |
4517 | | { |
4518 | | case json_storage_kind::empty_object: |
4519 | | create_object_implicitly(); |
4520 | | cast<object_storage>().value().insert(first, last); |
4521 | | break; |
4522 | | case json_storage_kind::object: |
4523 | | cast<object_storage>().value().insert(first, last); |
4524 | | break; |
4525 | | case json_storage_kind::json_ref: |
4526 | | cast<json_reference_storage>().value().insert(first, last); |
4527 | | break; |
4528 | | default: |
4529 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an object")); |
4530 | | } |
4531 | | } |
4532 | | |
4533 | | template <typename InputIt> |
4534 | | void insert(sorted_unique_range_tag tag, InputIt first, InputIt last) |
4535 | | { |
4536 | | switch (storage_kind()) |
4537 | | { |
4538 | | case json_storage_kind::empty_object: |
4539 | | create_object_implicitly(); |
4540 | | cast<object_storage>().value().insert(tag, first, last); |
4541 | | break; |
4542 | | case json_storage_kind::object: |
4543 | | cast<object_storage>().value().insert(tag, first, last); |
4544 | | break; |
4545 | | case json_storage_kind::json_ref: |
4546 | | cast<json_reference_storage>().value().insert(tag, first, last); |
4547 | | break; |
4548 | | default: |
4549 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an object")); |
4550 | | } |
4551 | | } |
4552 | | |
4553 | | template <typename... Args> |
4554 | | array_iterator emplace(const_array_iterator pos, Args&&... args) |
4555 | | { |
4556 | | switch (storage_kind()) |
4557 | | { |
4558 | | case json_storage_kind::array: |
4559 | | return cast<array_storage>().value().emplace(pos, std::forward<Args>(args)...); |
4560 | | break; |
4561 | | case json_storage_kind::json_ref: |
4562 | | return cast<json_reference_storage>().value().emplace(pos, std::forward<Args>(args)...); |
4563 | | default: |
4564 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); |
4565 | | } |
4566 | | } |
4567 | | |
4568 | | template <typename... Args> |
4569 | | basic_json& emplace_back(Args&&... args) |
4570 | | { |
4571 | | switch (storage_kind()) |
4572 | | { |
4573 | | case json_storage_kind::array: |
4574 | | return cast<array_storage>().value().emplace_back(std::forward<Args>(args)...); |
4575 | | case json_storage_kind::json_ref: |
4576 | | return cast<json_reference_storage>().value().emplace_back(std::forward<Args>(args)...); |
4577 | | default: |
4578 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); |
4579 | | } |
4580 | | } |
4581 | | |
4582 | | friend void swap(basic_json& a, basic_json& b) noexcept |
4583 | | { |
4584 | | a.swap(b); |
4585 | | } |
4586 | | |
4587 | | template <typename T> |
4588 | | void push_back(T&& val) |
4589 | | { |
4590 | | switch (storage_kind()) |
4591 | | { |
4592 | | case json_storage_kind::array: |
4593 | | cast<array_storage>().value().push_back(std::forward<T>(val)); |
4594 | | break; |
4595 | | case json_storage_kind::json_ref: |
4596 | | cast<json_reference_storage>().value().push_back(std::forward<T>(val)); |
4597 | | break; |
4598 | | default: |
4599 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); |
4600 | | } |
4601 | | } |
4602 | | |
4603 | | void push_back(basic_json&& val) |
4604 | 5.51M | { |
4605 | 5.51M | switch (storage_kind()) |
4606 | 5.51M | { |
4607 | 5.51M | case json_storage_kind::array: |
4608 | 5.51M | cast<array_storage>().value().push_back(std::move(val)); |
4609 | 5.51M | break; |
4610 | 0 | case json_storage_kind::json_ref: |
4611 | 0 | cast<json_reference_storage>().value().push_back(std::move(val)); |
4612 | 0 | break; |
4613 | 0 | default: |
4614 | 0 | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); |
4615 | 5.51M | } |
4616 | 5.51M | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Line | Count | Source | 4604 | 5.51M | { | 4605 | 5.51M | switch (storage_kind()) | 4606 | 5.51M | { | 4607 | 5.51M | case json_storage_kind::array: | 4608 | 5.51M | cast<array_storage>().value().push_back(std::move(val)); | 4609 | 5.51M | break; | 4610 | 0 | case json_storage_kind::json_ref: | 4611 | 0 | cast<json_reference_storage>().value().push_back(std::move(val)); | 4612 | 0 | break; | 4613 | 0 | default: | 4614 | 0 | JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array")); | 4615 | 5.51M | } | 4616 | 5.51M | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&) |
4617 | | |
4618 | | std::basic_string<char_type> to_string() const noexcept |
4619 | | { |
4620 | | using string_type2 = std::basic_string<char_type>; |
4621 | | string_type2 s; |
4622 | | basic_compact_json_encoder<char_type, jsoncons::string_sink<string_type2>> encoder(s); |
4623 | | dump(encoder); |
4624 | | return s; |
4625 | | } |
4626 | | |
4627 | | object_range_type object_range() |
4628 | 33.1k | { |
4629 | 33.1k | switch (storage_kind()) |
4630 | 33.1k | { |
4631 | 0 | case json_storage_kind::empty_object: |
4632 | 0 | return object_range_type(object_iterator(), object_iterator()); |
4633 | 33.1k | case json_storage_kind::object: |
4634 | 33.1k | return object_range_type(object_iterator(cast<object_storage>().value().begin()), |
4635 | 33.1k | object_iterator(cast<object_storage>().value().end())); |
4636 | 0 | case json_storage_kind::json_ref: |
4637 | 0 | return cast<json_reference_storage>().value().object_range(); |
4638 | 0 | default: |
4639 | 0 | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object")); |
4640 | 33.1k | } |
4641 | 33.1k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_range() Line | Count | Source | 4628 | 33.1k | { | 4629 | 33.1k | switch (storage_kind()) | 4630 | 33.1k | { | 4631 | 0 | case json_storage_kind::empty_object: | 4632 | 0 | return object_range_type(object_iterator(), object_iterator()); | 4633 | 33.1k | case json_storage_kind::object: | 4634 | 33.1k | return object_range_type(object_iterator(cast<object_storage>().value().begin()), | 4635 | 33.1k | object_iterator(cast<object_storage>().value().end())); | 4636 | 0 | case json_storage_kind::json_ref: | 4637 | 0 | return cast<json_reference_storage>().value().object_range(); | 4638 | 0 | default: | 4639 | 0 | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object")); | 4640 | 33.1k | } | 4641 | 33.1k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_range() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_range() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_range() |
4642 | | |
4643 | | const_object_range_type object_range() const |
4644 | | { |
4645 | | switch (storage_kind()) |
4646 | | { |
4647 | | case json_storage_kind::empty_object: |
4648 | | return const_object_range_type(const_object_iterator(), const_object_iterator()); |
4649 | | case json_storage_kind::object: |
4650 | | return const_object_range_type(const_object_iterator(cast<object_storage>().value().begin()), |
4651 | | const_object_iterator(cast<object_storage>().value().end())); |
4652 | | case json_storage_kind::json_const_ref: |
4653 | | return cast<json_const_reference_storage>().value().object_range(); |
4654 | | case json_storage_kind::json_ref: |
4655 | | return cast<json_reference_storage>().value().object_range(); |
4656 | | default: |
4657 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object")); |
4658 | | } |
4659 | | } |
4660 | | |
4661 | | array_range_type array_range() |
4662 | 8.11k | { |
4663 | 8.11k | switch (storage_kind()) |
4664 | 8.11k | { |
4665 | 8.11k | case json_storage_kind::array: |
4666 | 8.11k | return array_range_type(cast<array_storage>().value().begin(), |
4667 | 8.11k | cast<array_storage>().value().end()); |
4668 | 0 | case json_storage_kind::json_ref: |
4669 | 0 | return cast<json_reference_storage>().value().array_range(); |
4670 | 0 | default: |
4671 | 0 | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array")); |
4672 | 8.11k | } |
4673 | 8.11k | } jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_range() Line | Count | Source | 4662 | 8.11k | { | 4663 | 8.11k | switch (storage_kind()) | 4664 | 8.11k | { | 4665 | 8.11k | case json_storage_kind::array: | 4666 | 8.11k | return array_range_type(cast<array_storage>().value().begin(), | 4667 | 8.11k | cast<array_storage>().value().end()); | 4668 | 0 | case json_storage_kind::json_ref: | 4669 | 0 | return cast<json_reference_storage>().value().array_range(); | 4670 | 0 | default: | 4671 | 0 | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array")); | 4672 | 8.11k | } | 4673 | 8.11k | } |
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_range() Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_range() Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_range() |
4674 | | |
4675 | | const_array_range_type array_range() const |
4676 | | { |
4677 | | switch (storage_kind()) |
4678 | | { |
4679 | | case json_storage_kind::array: |
4680 | | return const_array_range_type(cast<array_storage>().value().begin(), |
4681 | | cast<array_storage>().value().end()); |
4682 | | case json_storage_kind::json_const_ref: |
4683 | | return cast<json_const_reference_storage>().value().array_range(); |
4684 | | case json_storage_kind::json_ref: |
4685 | | return cast<json_reference_storage>().value().array_range(); |
4686 | | default: |
4687 | | JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array")); |
4688 | | } |
4689 | | } |
4690 | | |
4691 | | private: |
4692 | | |
4693 | | void dump_noflush(basic_json_visitor<char_type>& visitor, std::error_code& ec) const |
4694 | | { |
4695 | | const ser_context context{}; |
4696 | | switch (storage_kind()) |
4697 | | { |
4698 | | case json_storage_kind::short_str: |
4699 | | case json_storage_kind::long_str: |
4700 | | visitor.string_value(as_string_view(), tag(), context, ec); |
4701 | | break; |
4702 | | case json_storage_kind::byte_str: |
4703 | | if (tag() == semantic_tag::ext) |
4704 | | { |
4705 | | visitor.byte_string_value(as_byte_string_view(), ext_tag(), context, ec); |
4706 | | } |
4707 | | else |
4708 | | { |
4709 | | visitor.byte_string_value(as_byte_string_view(), tag(), context, ec); |
4710 | | } |
4711 | | break; |
4712 | | case json_storage_kind::half_float: |
4713 | | visitor.half_value(cast<half_storage>().value(), tag(), context, ec); |
4714 | | break; |
4715 | | case json_storage_kind::float64: |
4716 | | visitor.double_value(cast<double_storage>().value(), |
4717 | | tag(), context, ec); |
4718 | | break; |
4719 | | case json_storage_kind::int64: |
4720 | | visitor.int64_value(cast<int64_storage>().value(), tag(), context, ec); |
4721 | | break; |
4722 | | case json_storage_kind::uint64: |
4723 | | visitor.uint64_value(cast<uint64_storage>().value(), tag(), context, ec); |
4724 | | break; |
4725 | | case json_storage_kind::boolean: |
4726 | | visitor.bool_value(cast<bool_storage>().value(), tag(), context, ec); |
4727 | | break; |
4728 | | case json_storage_kind::null: |
4729 | | visitor.null_value(tag(), context, ec); |
4730 | | break; |
4731 | | case json_storage_kind::empty_object: |
4732 | | visitor.begin_object(0, tag(), context, ec); |
4733 | | visitor.end_object(context, ec); |
4734 | | break; |
4735 | | case json_storage_kind::object: |
4736 | | { |
4737 | | visitor.begin_object(size(), tag(), context, ec); |
4738 | | const object& o = cast<object_storage>().value(); |
4739 | | for (auto it = o.begin(); it != o.end(); ++it) |
4740 | | { |
4741 | | visitor.key(string_view_type(((*it).key()).data(),(*it).key().length()), context, ec); |
4742 | | (*it).value().dump_noflush(visitor, ec); |
4743 | | } |
4744 | | visitor.end_object(context, ec); |
4745 | | break; |
4746 | | } |
4747 | | case json_storage_kind::array: |
4748 | | { |
4749 | | visitor.begin_array(size(), tag(), context, ec); |
4750 | | const array& o = cast<array_storage>().value(); |
4751 | | for (const_array_iterator it = o.begin(); it != o.end(); ++it) |
4752 | | { |
4753 | | (*it).dump_noflush(visitor, ec); |
4754 | | } |
4755 | | visitor.end_array(context, ec); |
4756 | | break; |
4757 | | } |
4758 | | case json_storage_kind::json_const_ref: |
4759 | | return cast<json_const_reference_storage>().value().dump_noflush(visitor, ec); |
4760 | | case json_storage_kind::json_ref: |
4761 | | return cast<json_reference_storage>().value().dump_noflush(visitor, ec); |
4762 | | default: |
4763 | | break; |
4764 | | } |
4765 | | } |
4766 | | |
4767 | | write_result try_dump_noflush(basic_json_visitor<char_type>& visitor) const |
4768 | | { |
4769 | | std::error_code ec; |
4770 | | const ser_context context{}; |
4771 | | switch (storage_kind()) |
4772 | | { |
4773 | | case json_storage_kind::short_str: |
4774 | | case json_storage_kind::long_str: |
4775 | | visitor.string_value(as_string_view(), tag(), context, ec); |
4776 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4777 | | case json_storage_kind::byte_str: |
4778 | | if (tag() == semantic_tag::ext) |
4779 | | { |
4780 | | visitor.byte_string_value(as_byte_string_view(), ext_tag(), context, ec); |
4781 | | } |
4782 | | else |
4783 | | { |
4784 | | visitor.byte_string_value(as_byte_string_view(), tag(), context, ec); |
4785 | | } |
4786 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4787 | | case json_storage_kind::half_float: |
4788 | | visitor.half_value(cast<half_storage>().value(), tag(), context, ec); |
4789 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4790 | | case json_storage_kind::float64: |
4791 | | visitor.double_value(cast<double_storage>().value(), |
4792 | | tag(), context, ec); |
4793 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4794 | | case json_storage_kind::int64: |
4795 | | visitor.int64_value(cast<int64_storage>().value(), tag(), context, ec); |
4796 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4797 | | case json_storage_kind::uint64: |
4798 | | visitor.uint64_value(cast<uint64_storage>().value(), tag(), context, ec); |
4799 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4800 | | case json_storage_kind::boolean: |
4801 | | visitor.bool_value(cast<bool_storage>().value(), tag(), context, ec); |
4802 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4803 | | case json_storage_kind::null: |
4804 | | visitor.null_value(tag(), context, ec); |
4805 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4806 | | case json_storage_kind::empty_object: |
4807 | | visitor.begin_object(0, tag(), context, ec); |
4808 | | visitor.end_object(context, ec); |
4809 | | return ec ? write_result{unexpect, ec} : write_result{}; |
4810 | | case json_storage_kind::object: |
4811 | | { |
4812 | | visitor.begin_object(size(), tag(), context, ec); |
4813 | | const object& o = cast<object_storage>().value(); |
4814 | | for (auto it = o.begin(); it != o.end(); ++it) |
4815 | | { |
4816 | | visitor.key(string_view_type(((*it).key()).data(),(*it).key().length()), context, ec); |
4817 | | (*it).value().dump_noflush(visitor, ec); |
4818 | | if (JSONCONS_UNLIKELY(ec)) |
4819 | | { |
4820 | | return write_result{unexpect, ec}; |
4821 | | } |
4822 | | } |
4823 | | visitor.end_object(context, ec); |
4824 | | if (JSONCONS_UNLIKELY(ec)) |
4825 | | { |
4826 | | return write_result{unexpect, ec}; |
4827 | | } |
4828 | | return write_result{}; |
4829 | | } |
4830 | | case json_storage_kind::array: |
4831 | | { |
4832 | | visitor.begin_array(size(), tag(), context, ec); |
4833 | | const array& o = cast<array_storage>().value(); |
4834 | | for (const_array_iterator it = o.begin(); it != o.end(); ++it) |
4835 | | { |
4836 | | auto r = (*it).try_dump_noflush(visitor); |
4837 | | if (JSONCONS_UNLIKELY(!r)) |
4838 | | { |
4839 | | return r; |
4840 | | } |
4841 | | } |
4842 | | visitor.end_array(context, ec); |
4843 | | if (JSONCONS_UNLIKELY(ec)) |
4844 | | { |
4845 | | return write_result{unexpect, ec}; |
4846 | | } |
4847 | | return write_result{}; |
4848 | | } |
4849 | | case json_storage_kind::json_const_ref: |
4850 | | return cast<json_const_reference_storage>().value().try_dump_noflush(visitor); |
4851 | | case json_storage_kind::json_ref: |
4852 | | return cast<json_reference_storage>().value().try_dump_noflush(visitor); |
4853 | | default: |
4854 | | JSONCONS_UNREACHABLE(); |
4855 | | break; |
4856 | | } |
4857 | | } |
4858 | | |
4859 | | friend std::basic_ostream<char_type>& operator<<(std::basic_ostream<char_type>& os, const basic_json& o) |
4860 | | { |
4861 | | o.dump(os); |
4862 | | return os; |
4863 | | } |
4864 | | |
4865 | | friend std::basic_istream<char_type>& operator>>(std::basic_istream<char_type>& is, basic_json& o) |
4866 | | { |
4867 | | json_decoder<basic_json> visitor; |
4868 | | basic_json_reader<char_type,stream_source<char_type>> reader(is, visitor); |
4869 | | reader.read_next(); |
4870 | | reader.check_done(); |
4871 | | if (!visitor.is_valid()) |
4872 | | { |
4873 | | JSONCONS_THROW(json_runtime_error<std::runtime_error>("Failed to parse json stream")); |
4874 | | } |
4875 | | o = visitor.get_result(); |
4876 | | return is; |
4877 | | } |
4878 | | |
4879 | | friend basic_json deep_copy(const basic_json& other) |
4880 | | { |
4881 | | switch (other.storage_kind()) |
4882 | | { |
4883 | | case json_storage_kind::array: |
4884 | | { |
4885 | | basic_json j(json_array_arg, other.tag(), other.get_allocator()); |
4886 | | j.reserve(other.size()); |
4887 | | |
4888 | | for (const auto& item : other.array_range()) |
4889 | | { |
4890 | | j.push_back(deep_copy(item)); |
4891 | | } |
4892 | | return j; |
4893 | | } |
4894 | | case json_storage_kind::object: |
4895 | | { |
4896 | | basic_json j(json_object_arg, other.tag(), other.get_allocator()); |
4897 | | j.reserve(other.size()); |
4898 | | |
4899 | | for (const auto& item : other.object_range()) |
4900 | | { |
4901 | | j.try_emplace(item.key(), deep_copy(item.value())); |
4902 | | } |
4903 | | return j; |
4904 | | } |
4905 | | case json_storage_kind::json_const_ref: |
4906 | | return deep_copy(other.cast<json_const_reference_storage>().value()); |
4907 | | case json_storage_kind::json_ref: |
4908 | | return deep_copy(other.cast<json_reference_storage>().value()); |
4909 | | default: |
4910 | | return other; |
4911 | | } |
4912 | | } |
4913 | | }; |
4914 | | |
4915 | | // operator== |
4916 | | |
4917 | | template <typename Json> |
4918 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type |
4919 | | operator==(const Json& lhs, const Json& rhs) noexcept |
4920 | | { |
4921 | | return lhs.compare(rhs) == 0; |
4922 | | } |
4923 | | |
4924 | | template <typename Json,typename T> |
4925 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4926 | | operator==(const Json& lhs, const T& rhs) |
4927 | | { |
4928 | | return lhs.compare(rhs) == 0; |
4929 | | } |
4930 | | |
4931 | | template <typename Json,typename T> |
4932 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4933 | | operator==(const T& lhs, const Json& rhs) |
4934 | | { |
4935 | | return rhs.compare(lhs) == 0; |
4936 | | } |
4937 | | |
4938 | | // operator!= |
4939 | | |
4940 | | template <typename Json> |
4941 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type |
4942 | | operator!=(const Json& lhs, const Json& rhs) noexcept |
4943 | | { |
4944 | | return lhs.compare(rhs) != 0; |
4945 | | } |
4946 | | |
4947 | | template <typename Json,typename T> |
4948 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4949 | | operator!=(const Json& lhs, const T& rhs) |
4950 | | { |
4951 | | return lhs.compare(rhs) != 0; |
4952 | | } |
4953 | | |
4954 | | template <typename Json,typename T> |
4955 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4956 | | operator!=(const T& lhs, const Json& rhs) |
4957 | | { |
4958 | | return rhs.compare(lhs) != 0; |
4959 | | } |
4960 | | |
4961 | | // operator< |
4962 | | |
4963 | | template <typename Json> |
4964 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type |
4965 | | operator<(const Json& lhs, const Json& rhs) noexcept |
4966 | | { |
4967 | | return lhs.compare(rhs) < 0; |
4968 | | } |
4969 | | |
4970 | | template <typename Json,typename T> |
4971 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4972 | | operator<(const Json& lhs, const T& rhs) |
4973 | | { |
4974 | | return lhs.compare(rhs) < 0; |
4975 | | } |
4976 | | |
4977 | | template <typename Json,typename T> |
4978 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4979 | | operator<(const T& lhs, const Json& rhs) |
4980 | | { |
4981 | | return rhs.compare(lhs) > 0; |
4982 | | } |
4983 | | |
4984 | | // operator<= |
4985 | | |
4986 | | template <typename Json> |
4987 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type |
4988 | | operator<=(const Json& lhs, const Json& rhs) noexcept |
4989 | | { |
4990 | | return lhs.compare(rhs) <= 0; |
4991 | | } |
4992 | | |
4993 | | template <typename Json,typename T> |
4994 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
4995 | | operator<=(const Json& lhs, const T& rhs) |
4996 | | { |
4997 | | return lhs.compare(rhs) <= 0; |
4998 | | } |
4999 | | |
5000 | | template <typename Json,typename T> |
5001 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
5002 | | operator<=(const T& lhs, const Json& rhs) |
5003 | | { |
5004 | | return rhs.compare(lhs) >= 0; |
5005 | | } |
5006 | | |
5007 | | // operator> |
5008 | | |
5009 | | template <typename Json> |
5010 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type |
5011 | | operator>(const Json& lhs, const Json& rhs) noexcept |
5012 | | { |
5013 | | return lhs.compare(rhs) > 0; |
5014 | | } |
5015 | | |
5016 | | template <typename Json,typename T> |
5017 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
5018 | | operator>(const Json& lhs, const T& rhs) |
5019 | | { |
5020 | | return lhs.compare(rhs) > 0; |
5021 | | } |
5022 | | |
5023 | | template <typename Json,typename T> |
5024 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
5025 | | operator>(const T& lhs, const Json& rhs) |
5026 | | { |
5027 | | return rhs.compare(lhs) < 0; |
5028 | | } |
5029 | | |
5030 | | // operator>= |
5031 | | |
5032 | | template <typename Json> |
5033 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type |
5034 | | operator>=(const Json& lhs, const Json& rhs) noexcept |
5035 | | { |
5036 | | return lhs.compare(rhs) >= 0; |
5037 | | } |
5038 | | |
5039 | | template <typename Json,typename T> |
5040 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
5041 | | operator>=(const Json& lhs, const T& rhs) |
5042 | | { |
5043 | | return lhs.compare(rhs) >= 0; |
5044 | | } |
5045 | | |
5046 | | template <typename Json,typename T> |
5047 | | typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type |
5048 | | operator>=(const T& lhs, const Json& rhs) |
5049 | | { |
5050 | | return rhs.compare(lhs) <= 0; |
5051 | | } |
5052 | | |
5053 | | // swap |
5054 | | |
5055 | | template <typename Json> |
5056 | | void swap(typename Json::key_value_type& a,typename Json::key_value_type& b) noexcept |
5057 | | { |
5058 | | a.swap(b); |
5059 | | } |
5060 | | |
5061 | | using json = basic_json<char,sorted_policy,std::allocator<char>>; |
5062 | | using wjson = basic_json<wchar_t,sorted_policy,std::allocator<char>>; |
5063 | | using ojson = basic_json<char, order_preserving_policy, std::allocator<char>>; |
5064 | | using wojson = basic_json<wchar_t, order_preserving_policy, std::allocator<char>>; |
5065 | | |
5066 | | inline namespace literals { |
5067 | | |
5068 | | inline |
5069 | | jsoncons::json operator ""_json(const char* s, std::size_t n) |
5070 | 0 | { |
5071 | 0 | return jsoncons::json::parse(jsoncons::json::string_view_type(s, n)); |
5072 | 0 | } |
5073 | | |
5074 | | inline |
5075 | | jsoncons::wjson operator ""_json(const wchar_t* s, std::size_t n) |
5076 | 0 | { |
5077 | 0 | return jsoncons::wjson::parse(jsoncons::wjson::string_view_type(s, n)); |
5078 | 0 | } |
5079 | | |
5080 | | inline |
5081 | | jsoncons::ojson operator ""_ojson(const char* s, std::size_t n) |
5082 | 0 | { |
5083 | 0 | return jsoncons::ojson::parse(jsoncons::ojson::string_view_type(s, n)); |
5084 | 0 | } |
5085 | | |
5086 | | inline |
5087 | | jsoncons::wojson operator ""_ojson(const wchar_t* s, std::size_t n) |
5088 | 0 | { |
5089 | 0 | return jsoncons::wojson::parse(jsoncons::wojson::string_view_type(s, n)); |
5090 | 0 | } |
5091 | | |
5092 | | } // inline namespace literals |
5093 | | |
5094 | | #if defined(JSONCONS_HAS_POLYMORPHIC_ALLOCATOR) |
5095 | | namespace pmr { |
5096 | | template< typename CharT,typename Policy> |
5097 | | using basic_json = jsoncons::basic_json<CharT, Policy, std::pmr::polymorphic_allocator<char>>; |
5098 | | using json = basic_json<char,sorted_policy>; |
5099 | | using wjson = basic_json<wchar_t,sorted_policy>; |
5100 | | using ojson = basic_json<char, order_preserving_policy>; |
5101 | | using wojson = basic_json<wchar_t, order_preserving_policy>; |
5102 | | } // namespace pmr |
5103 | | #endif |
5104 | | |
5105 | | } // namespace jsoncons |
5106 | | |
5107 | | #endif // JSONCONS_BASIC_JSON_HPP |