Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
68dc3f56
Commit
68dc3f56
authored
May 31, 2020
by
Rosen Penev
Committed by
Nikias Bassen
Jun 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
c++: Fix inconsistent declarations
Signed-off-by:
Rosen Penev
<
rosenp@gmail.com
>
parent
f5fb0b4c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Data.h
include/plist/Data.h
+1
-1
Dictionary.h
include/plist/Dictionary.h
+1
-1
Key.h
include/plist/Key.h
+2
-2
No files found.
include/plist/Data.h
View file @
68dc3f56
...
...
@@ -34,7 +34,7 @@ public :
Data
(
Node
*
parent
=
NULL
);
Data
(
plist_t
node
,
Node
*
parent
=
NULL
);
Data
(
const
Data
&
d
);
Data
&
operator
=
(
Data
&
d
);
Data
&
operator
=
(
Data
&
b
);
Data
(
const
std
::
vector
<
char
>&
buff
);
virtual
~
Data
();
...
...
include/plist/Dictionary.h
View file @
68dc3f56
...
...
@@ -55,7 +55,7 @@ public :
iterator
Insert
(
const
std
::
string
&
key
,
Node
*
node
)
PLIST_WARN_DEPRECATED
(
"use Set() instead"
);
void
Remove
(
Node
*
node
);
void
Remove
(
const
std
::
string
&
key
);
std
::
string
GetNodeKey
(
Node
*
key
);
std
::
string
GetNodeKey
(
Node
*
node
);
private
:
std
::
map
<
std
::
string
,
Node
*>
_map
;
...
...
include/plist/Key.h
View file @
68dc3f56
...
...
@@ -33,8 +33,8 @@ class Key : public Node
public
:
Key
(
Node
*
parent
=
NULL
);
Key
(
plist_t
node
,
Node
*
parent
=
NULL
);
Key
(
const
Key
&
s
);
Key
&
operator
=
(
Key
&
s
);
Key
(
const
Key
&
k
);
Key
&
operator
=
(
Key
&
k
);
Key
(
const
std
::
string
&
s
);
virtual
~
Key
();
...
...
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