tdf#97966: Remove 'static' keywords
Change-Id: Id991cead4f01830eafd9cf8dd63b519ef07c9451 Reviewed-on: https://gerrit.libreoffice.org/23134 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
committed by
Stephan Bergmann
parent
018c6adf85
commit
9a13cff647
@@ -44,7 +44,7 @@ private:
|
||||
char* mmappedData;
|
||||
};
|
||||
|
||||
static size_t getFilesize(const char* filename)
|
||||
size_t getFilesize(const char* filename)
|
||||
{
|
||||
struct stat st;
|
||||
stat(filename, &st);
|
||||
@@ -71,7 +71,7 @@ UnusedMethodsRemove::~UnusedMethodsRemove()
|
||||
close(mmapFD);
|
||||
}
|
||||
|
||||
static std::string niceName(const CXXMethodDecl* functionDecl)
|
||||
std::string niceName(const CXXMethodDecl* functionDecl)
|
||||
{
|
||||
std::string s =
|
||||
compat::getReturnType(*functionDecl).getCanonicalType().getAsString()
|
||||
|
Reference in New Issue
Block a user