From dfa371c436fa14926544eb11f3207d0439cd2c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E8=8D=A3=E9=A3=9E?= Date: Sat, 13 May 2017 23:13:04 +0800 Subject: [PATCH] fix doxygen error of basic_json::get() --- src/json.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/json.hpp b/src/json.hpp index 7f3b30bb0..2ed149644 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -3447,9 +3447,9 @@ class basic_json This overloads is chosen if: - @a ValueType is not @ref basic_json, - @ref json_serializer has a `from_json()` method of the form - `void from_json(const @ref basic_json&, ValueType&)`, and + `void from_json(const ` @ref basic_json`&, ValueType&)`, and - @ref json_serializer does not have a `from_json()` method of - the form `ValueType from_json(const @ref basic_json&)` + the form `ValueType from_json(const ` @ref basic_json`&)` @tparam ValueTypeCV the provided value type @tparam ValueType the returned value type @@ -3508,7 +3508,7 @@ class basic_json This overloads is chosen if: - @a ValueType is not @ref basic_json and - @ref json_serializer has a `from_json()` method of the form - `ValueType from_json(const @ref basic_json&)` + `ValueType from_json(const ` @ref basic_json`&)` @note If @ref json_serializer has both overloads of `from_json()`, this one is chosen.