Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
29842026
Unverified
Commit
29842026
authored
Aug 13, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🚚
remove quotes from filename to fix Windows build
parent
dd2fb3b4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
doc/docset/docSet.sql
doc/docset/docSet.sql
+2
-2
doc/mkdocs/docs/api/basic_json/index.md
doc/mkdocs/docs/api/basic_json/index.md
+2
-2
doc/mkdocs/docs/api/basic_json/operator_literal_json.md
doc/mkdocs/docs/api/basic_json/operator_literal_json.md
+0
-0
doc/mkdocs/docs/api/basic_json/operator_literal_json_pointer.md
...docs/docs/api/basic_json/operator_literal_json_pointer.md
+0
-0
doc/mkdocs/mkdocs.yml
doc/mkdocs/mkdocs.yml
+2
-2
No files found.
doc/docset/docSet.sql
View file @
29842026
...
@@ -61,8 +61,8 @@ INSERT INTO searchIndex(name, type, path) VALUES ('operator+=', 'Operator', 'api
...
@@ -61,8 +61,8 @@ INSERT INTO searchIndex(name, type, path) VALUES ('operator+=', 'Operator', 'api
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator='
,
'Operator'
,
'api/basic_json/operator=/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator='
,
'Operator'
,
'api/basic_json/operator=/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator=='
,
'Operator'
,
'api/basic_json/operator==/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator=='
,
'Operator'
,
'api/basic_json/operator==/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator[]'
,
'Operator'
,
'api/basic_json/operator[]/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator[]'
,
'Operator'
,
'api/basic_json/operator[]/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator""_json'
,
'Literal'
,
'api/basic_json/operator
%22%22
_json/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator""_json'
,
'Literal'
,
'api/basic_json/operator
_literal
_json/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator""_json_pointer'
,
'Literal'
,
'api/basic_json/operator
%22%22
_json_pointer/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator""_json_pointer'
,
'Literal'
,
'api/basic_json/operator
_literal
_json_pointer/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator value_t'
,
'Operator'
,
'api/basic_json/operator_value_t/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'operator value_t'
,
'Operator'
,
'api/basic_json/operator_value_t/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'ordered_json'
,
'Class'
,
'api/ordered_json/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'ordered_json'
,
'Class'
,
'api/ordered_json/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'ordered_map'
,
'Class'
,
'api/ordered_map/index.html'
);
INSERT
INTO
searchIndex
(
name
,
type
,
path
)
VALUES
(
'ordered_map'
,
'Class'
,
'api/ordered_map/index.html'
);
...
...
doc/mkdocs/docs/api/basic_json/index.md
View file @
29842026
...
@@ -245,8 +245,8 @@ Access to the JSON value
...
@@ -245,8 +245,8 @@ Access to the JSON value
## Literals
## Literals
-
[
**operator""_json**
](
operator
%22%22
_json.md
)
- user-defined string literal for JSON values
-
[
**operator""_json**
](
operator
_literal
_json.md
)
- user-defined string literal for JSON values
-
[
**operator""_json_pointer**
](
operator
%22%22
_json_pointer.md
)
- user-defined string literal for JSON pointers
-
[
**operator""_json_pointer**
](
operator
_literal
_json_pointer.md
)
- user-defined string literal for JSON pointers
## Helper classes
## Helper classes
...
...
doc/mkdocs/docs/api/basic_json/operator
""
_json.md
→
doc/mkdocs/docs/api/basic_json/operator
_literal
_json.md
View file @
29842026
File moved
doc/mkdocs/docs/api/basic_json/operator
""
_json_pointer.md
→
doc/mkdocs/docs/api/basic_json/operator
_literal
_json_pointer.md
View file @
29842026
File moved
doc/mkdocs/mkdocs.yml
View file @
29842026
...
@@ -133,8 +133,8 @@ nav:
...
@@ -133,8 +133,8 @@ nav:
-
api/basic_json/operator==.md
-
api/basic_json/operator==.md
-
api/basic_json/operator!=.md
-
api/basic_json/operator!=.md
-
api/basic_json/operator+=.md
-
api/basic_json/operator+=.md
-
api/basic_json/operator
""
_json.md
-
api/basic_json/operator
_literal
_json.md
-
api/basic_json/operator
""
_json_pointer.md
-
api/basic_json/operator
_literal
_json_pointer.md
-
api/basic_json/parse.md
-
api/basic_json/parse.md
-
api/basic_json/parse_event_t.md
-
api/basic_json/parse_event_t.md
-
api/basic_json/parser_callback_t.md
-
api/basic_json/parser_callback_t.md
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment