diff options
author | Max Kellermann <max@duempel.org> | 2014-12-12 14:12:31 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-12 14:12:31 +0100 |
commit | 7de684668bb0604bc2858269176fe55683b16d81 (patch) | |
tree | e325a754118df38496f7c19d7a3ba05d9db8e60e /src/sticker/StickerDatabase.cxx | |
parent | 4741d7bfe229b36f15379ca7eada908ae5fd0bce (diff) |
sticker/Database: remove C-style (void)
Diffstat (limited to 'src/sticker/StickerDatabase.cxx')
-rw-r--r-- | src/sticker/StickerDatabase.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sticker/StickerDatabase.cxx b/src/sticker/StickerDatabase.cxx index 93eaa900d..96a9a6889 100644 --- a/src/sticker/StickerDatabase.cxx +++ b/src/sticker/StickerDatabase.cxx @@ -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; } |