@@ -57,14 +57,14 @@ module json_parameters
57
57
character (kind= CK,len=* ),parameter :: dot = CK_' .' ! ! path separator for [[json_get_by_path_default]]
58
58
character (kind= CK,len=* ),parameter :: tilde = CK_' ~' ! ! RFC 6901 escape character
59
59
character (kind= CK,len=* ),parameter :: single_quote = CK_" '" ! ! for JSONPath bracket-notation
60
- character (kind= CK,len=* ),parameter :: slash = CK_' /' ! ! JSON special character
61
- character (kind= CK,len=* ),parameter :: backslash = CK_' \' ! ! JSON special character
62
60
character (kind= CK,len=* ),parameter :: quotation_mark = CK_' "' ! ! JSON special character
63
61
character (kind= CK,len=* ),parameter :: bspace = achar (8 , kind= CK) ! ! JSON special character
64
62
character (kind= CK,len=* ),parameter :: horizontal_tab = achar (9 , kind= CK) ! ! JSON special character
65
63
character (kind= CK,len=* ),parameter :: newline = achar (10 , kind= CK) ! ! JSON special character
66
64
character (kind= CK,len=* ),parameter :: formfeed = achar (12 , kind= CK) ! ! JSON special character
67
65
character (kind= CK,len=* ),parameter :: carriage_return = achar (13 , kind= CK) ! ! JSON special character
66
+ character (kind= CK,len=* ),parameter :: slash = achar (47 , kind= CK) ! ! JSON special character
67
+ character (kind= CK,len=* ),parameter :: backslash = achar (92 , kind= CK) ! ! JSON special character
68
68
69
69
! > default real number format statement (for writing real values to strings and files).
70
70
! Note that this can be overridden by calling [[json_initialize]].
0 commit comments