diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-08-17 01:22:21 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-08-17 18:16:10 +0300 |
commit | 1c8e4f74c63312fca5898452fae4ba32268fce65 (patch) | |
tree | 0928ae8aa61418220253f3948a298884464b05c1 /include | |
parent | cb87239694e17e014c345a231c0eb21cb121f6c2 (diff) |
These 'inline' keywords are fairly pointless
Change-Id: I1018ca4954282d0b62a254d509e29493588960c1
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitInit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitInit.h b/include/LibreOfficeKit/LibreOfficeKitInit.h index bbef7d54c829..aedc606c4833 100644 --- a/include/LibreOfficeKit/LibreOfficeKitInit.h +++ b/include/LibreOfficeKit/LibreOfficeKitInit.h @@ -51,22 +51,22 @@ extern "C" ); } - inline char *lok_dlerror(void) + char *lok_dlerror(void) { return dlerror(); } - inline void *lok_dlsym(void *Hnd, const char *pName) + void *lok_dlsym(void *Hnd, const char *pName) { return dlsym(Hnd, pName); } - inline int lok_dlclose(void *Hnd) + int lok_dlclose(void *Hnd) { return dlclose(Hnd); } - inline void extendUnoPath(const char *pPath) + void extendUnoPath(const char *pPath) { (void)pPath; } |