Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
7de68466
Commit
7de68466
authored
Dec 12, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sticker/Database: remove C-style (void)
parent
4741d7bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
StickerDatabase.cxx
src/sticker/StickerDatabase.cxx
+2
-2
StickerDatabase.hxx
src/sticker/StickerDatabase.hxx
+2
-2
No files found.
src/sticker/StickerDatabase.cxx
View file @
7de68466
...
...
@@ -149,7 +149,7 @@ sticker_global_init(Path path, Error &error)
}
void
sticker_global_finish
(
void
)
sticker_global_finish
()
{
if
(
sticker_db
==
nullptr
)
/* not configured */
...
...
@@ -165,7 +165,7 @@ sticker_global_finish(void)
}
bool
sticker_enabled
(
void
)
sticker_enabled
()
{
return
sticker_db
!=
nullptr
;
}
...
...
src/sticker/StickerDatabase.hxx
View file @
7de68466
...
...
@@ -62,14 +62,14 @@ sticker_global_init(Path path, Error &error);
* Close the sticker database.
*/
void
sticker_global_finish
(
void
);
sticker_global_finish
();
/**
* Returns true if the sticker database is configured and available.
*/
gcc_const
bool
sticker_enabled
(
void
);
sticker_enabled
();
/**
* Returns one value from an object's sticker record. Returns an
...
...
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